Skip to content

Commit

Permalink
Fixed a failing test “testUseProfiles_withNullValue”
Browse files Browse the repository at this point in the history
  • Loading branch information
cyburs committed Jan 3, 2016
1 parent 8b501b3 commit d9a2d0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jodd-vtor/src/test/java/jodd/vtor/VtorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public void testUseProfile_withTwoDifferentValues() throws Exception {
@Test
public void testUseProfiles_withNullValue() throws Exception {
Vtor vtor = new Vtor();
vtor.useProfiles((String) null);
vtor.useProfiles(null);
assertNull("list of enabled profiles must be null when add only null profile", vtor.enabledProfiles);
}

Expand Down

0 comments on commit d9a2d0b

Please sign in to comment.