Skip to content

Commit

Permalink
#196 fix the test
Browse files Browse the repository at this point in the history
  • Loading branch information
asolntsev committed Aug 21, 2016
1 parent ae68c0e commit 1ae0ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/integration/proxy/ChainedProxyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void selenideProxyCanWorkWithUserProvidedChainedProxy() {
assertEquals(2, server.uploadedFiles.size());

// Assert that "chained" proxy has intercepted requests
assertTrue(visitedUrls.size() > 3);
assertTrue("Expected at least 2 urls, but got: " + visitedUrls, visitedUrls.size() >= 3);
assertThat(visitedUrls.get(0), endsWith("/start_page.html"));
assertThat(visitedUrls.get(visitedUrls.size() - 1), endsWith("/upload"));
}
Expand Down

0 comments on commit 1ae0ab8

Please sign in to comment.