Skip to content

Commit

Permalink
Fix formatting issue add name to authors
Browse files Browse the repository at this point in the history
  • Loading branch information
wmxl committed Oct 17, 2024
1 parent f2e7679 commit e0db1d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
*
* @author Mark Paluch
* @author Alessandro Simi
* @author Tony Zhang
* @since 3.0
*/
@SuppressWarnings("serial")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void shouldReturnTrueWhenSlotsAreNull() {
@Test
void shouldReturnTrueWhenSlotsAreEmpty() {

BitSet emptySlots = new BitSet(); // Empty BitSet
BitSet emptySlots = new BitSet(); // Empty BitSet
RedisClusterNode node = new RedisClusterNode(RedisURI.create("localhost", 6379), "1", true, null, 0, 0, 0, emptySlots,
Collections.emptySet());

Expand All @@ -164,7 +164,7 @@ void shouldReturnTrueWhenSlotsAreEmpty() {
void shouldReturnFalseWhenSlotsAreAssigned() {

BitSet slots = new BitSet();
slots.set(1); // Assign a slot
slots.set(1); // Assign a slot
RedisClusterNode node = new RedisClusterNode(RedisURI.create("localhost", 6379), "1", true, null, 0, 0, 0, slots,
Collections.emptySet());

Expand Down

0 comments on commit e0db1d0

Please sign in to comment.