This is an automated email from the ASF dual-hosted git repository.
kezhuw pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/curator.git
The following commit(s) were added to refs/heads/master by this push:
new 3022c5812 Fix code style with spotless
3022c5812 is described below
commit 3022c5812a5dfeb48c0e51e04318a67871bbdb5a
Author: Kezhu Wang <[email protected]>
AuthorDate: Sun Jul 19 19:40:25 2026 +0800
Fix code style with spotless
---
.../apache/curator/framework/recipes/watch/TestPersistentWatcher.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/curator-recipes/src/test/java/org/apache/curator/framework/recipes/watch/TestPersistentWatcher.java
b/curator-recipes/src/test/java/org/apache/curator/framework/recipes/watch/TestPersistentWatcher.java
index efc3640c4..48a2c6ee9 100644
---
a/curator-recipes/src/test/java/org/apache/curator/framework/recipes/watch/TestPersistentWatcher.java
+++
b/curator-recipes/src/test/java/org/apache/curator/framework/recipes/watch/TestPersistentWatcher.java
@@ -148,7 +148,9 @@ public class TestPersistentWatcher extends CuratorTestBase {
}
}
- assertEquals(0, ((StandardListenerManager<?>)
client.getCuratorListenable()).size(),
+ assertEquals(
+ 0,
+ ((StandardListenerManager<?>)
client.getCuratorListenable()).size(),
"Curator listeners set up by the now closed
PersistentWatchers should have been de-registered");
}
}