smiklosovic commented on code in PR #3608:
URL: https://github.com/apache/cassandra/pull/3608#discussion_r1794314026


##########
test/unit/org/apache/cassandra/Util.java:
##########
@@ -626,12 +627,17 @@ public static void spinAssertEquals(Object expected, 
Supplier<Object> actualSupp
     }
 
     public static <T> void spinAssertEquals(String message, T expected, 
Supplier<? extends T> actualSupplier, long timeout, TimeUnit timeUnit)
+    {
+        spinAssert(message, equalTo(expected), actualSupplier, timeout, 
timeUnit);
+    }
+
+    public static <T> void spinAssert(String message, Matcher<T> mather, 
Supplier<? extends T> actualSupplier, long timeout, TimeUnit timeUnit)

Review Comment:
   @netudima "matcher" instead of "mather"



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to