Skip to content

Commit

Permalink
Codestyle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentgo committed Mar 11, 2024
1 parent 191cc6e commit c50c2f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ public void testIsZk35() {
assertTrue(Compatibility.hasAddrField());
assertFalse(Compatibility.hasPersistentWatchers());
assertFalse(ZookeeperCompatibility.LATEST.hasPersistentWatchers());
assertFalse(ZookeeperCompatibility.builder()
.build()
.hasPersistentWatchers());
assertFalse(ZookeeperCompatibility.builder().build().hasPersistentWatchers());
assertFalse(ZookeeperCompatibility.builder()
.hasPersistentWatchers(false)
.build()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ public void testIsZk36() {
assertTrue(Compatibility.hasAddrField());
assertTrue(Compatibility.hasPersistentWatchers());
assertTrue(ZookeeperCompatibility.LATEST.hasPersistentWatchers());
assertFalse(ZookeeperCompatibility.builder()
.build()
.hasPersistentWatchers());
assertFalse(ZookeeperCompatibility.builder().build().hasPersistentWatchers());
assertFalse(ZookeeperCompatibility.builder()
.hasPersistentWatchers(false)
.build()
Expand Down

0 comments on commit c50c2f8

Please sign in to comment.