Skip to content

Commit

Permalink
Fix simple update test
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubenicos committed Jan 24, 2024
1 parent 7405387 commit 23abd43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/test/java/com/saicone/settings/node/NodeUpdaterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ public void testSimpleUpdate() {
MapNode provider = new MapNode();
provider.child("key1", "Number: 1234");
provider.child("key3", ImmutableMap.of("sub1", false, "sub2", false));
SettingsUpdater.simple().update(actual, provider);

assertEquals(expected, SettingsUpdater.simple().update(actual, provider));
assertEquals(expected, actual);
}
}

0 comments on commit 23abd43

Please sign in to comment.