Skip to content

Commit

Permalink
improving diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
kohsuke committed Apr 15, 2014
1 parent ad49c24 commit 2b0ffcf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/java/hudson/remoting/PrefetchingTest.java
Expand Up @@ -174,10 +174,10 @@ public void testGetResources_precache() throws Exception {

String[] lines = v.split("\n");

assertTrue(lines[0].startsWith("file:"));
assertTrue(lines[1].startsWith("file:"));
assertTrue(lines[0].endsWith("::hello"));
assertTrue(lines[1].endsWith("::hello2"));
assertTrue(lines[0], lines[0].startsWith("file:"));
assertTrue(lines[1], lines[1].startsWith("file:"));
assertTrue(lines[0], lines[0].endsWith("::hello"));
assertTrue(lines[1], lines[1].endsWith("::hello2"));
}

public void testInnerClass() throws Exception {
Expand Down

0 comments on commit 2b0ffcf

Please sign in to comment.