This is an automated email from the ASF dual-hosted git repository. samt pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/cassandra.git
commit 28630ccbbf48a484284c0e7a9a6a7aa097136af0 Author: Sam Tunnicliffe <[email protected]> AuthorDate: Tue Dec 5 17:03:24 2023 +0000 Update expected error message which is too specific Patch by Sam Tunnicliffe; reviewed by Alex Petrov for CASSANDRA-19102 --- .../org/apache/cassandra/distributed/test/ReadRepairTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/distributed/org/apache/cassandra/distributed/test/ReadRepairTest.java b/test/distributed/org/apache/cassandra/distributed/test/ReadRepairTest.java index 7d459d511d..aa676717db 100644 --- a/test/distributed/org/apache/cassandra/distributed/test/ReadRepairTest.java +++ b/test/distributed/org/apache/cassandra/distributed/test/ReadRepairTest.java @@ -422,7 +422,7 @@ public class ReadRepairTest extends TestBaseImpl { Throwable cause = e.getCause(); Assert.assertTrue("Expected a different error message, but got " + cause.getMessage(), - cause.getMessage().contains("Operation failed - received 1 responses and 1 failures: INVALID_ROUTING from /127.0.0.2:7012")); + cause.getMessage().contains("INVALID_ROUTING from /127.0.0.2:7012")); } catch (InterruptedException e) { --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
