Skip to content

Commit

Permalink
confirm working on java 13
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Jan 19, 2020
1 parent 5ffb032 commit 353045c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ jobs:
script:
- ../utils/mvn-run.sh clean verify

- name: "jdk13"
jdk: openjdk13
script:
- ../utils/mvn-run.sh clean verify

deploy:
provider: pages
skip_cleanup: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void testClientRetry(final String targetUrl,
}

assertNotNull(caughtException);
assertEquals(caughtException.toString(), expectedExceptionString);
assertEquals(caughtException.toString().toUpperCase(), expectedExceptionString.toUpperCase());

if (shouldRetry) {
assertEquals(attemptedRetries.get(), maxRetries);
Expand Down

0 comments on commit 353045c

Please sign in to comment.