Skip to content

Commit

Permalink
missed parenthesis in assert around [ array.join(', ') ]
Browse files Browse the repository at this point in the history
  • Loading branch information
kares committed Jul 24, 2015
1 parent 1463f07 commit 46a2eff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ private static void assertGemListEquals(final OSGiIsolatedScriptingContainer jru
}
}
else {
assertEquals( Arrays.toString(expected), list );
assertEquals( Arrays.toString(expected), '[' + list + ']' );
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ private static void assertGemListEquals(final OSGiIsolatedScriptingContainer jru
}
}
else {
assertEquals( Arrays.toString(expected), list );
assertEquals( Arrays.toString(expected), '[' + list + ']' );
}
}

Expand Down

0 comments on commit 46a2eff

Please sign in to comment.