We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3867796 commit 371f2cdCopy full SHA for 371f2cd
google-http-client/src/test/java/com/google/api/client/http/HttpRequestTest.java
@@ -1131,7 +1131,8 @@ public LowLevelHttpResponse execute() throws IOException {
1131
@Test
1132
public void testVersion() {
1133
assertNotNull("version constant should not be null", HttpRequest.VERSION);
1134
- Pattern semverPattern = Pattern.compile("\\d+\\.\\d+\\.\\d+(-sp\\.\\d+)?(-SNAPSHOT)?");
+ Pattern semverPattern =
1135
+ Pattern.compile("\\d+\\.\\d+\\.\\d+(-sp\\.\\d+)?(-rc\\d+)?(-SNAPSHOT)?");
1136
assertTrue(semverPattern.matcher(HttpRequest.VERSION).matches());
1137
}
1138
0 commit comments