Skip to content

Commit

Permalink
Fixed the ci failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
dota17 committed Apr 28, 2020
1 parent fadafcf commit 82e7f01
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void testEquals() {
Assert.assertEquals(PropertiesFactory.EMPTY_PROPERTIES, PropertiesFactory.EMPTY_PROPERTIES);
Assert.assertEquals(PropertiesFactory.EMPTY_PROPERTIES, new Properties());
Assert.assertEquals(new Properties(), PropertiesFactory.EMPTY_PROPERTIES);
Assert.assertNull(PropertiesFactory.EMPTY_PROPERTIES);
Assert.assertFalse(PropertiesFactory.EMPTY_PROPERTIES.equals(null));
final Properties p = new Properties();
p.put("Key", "Value");
Assert.assertFalse(PropertiesFactory.EMPTY_PROPERTIES.equals(p));
Expand Down

0 comments on commit 82e7f01

Please sign in to comment.