Repository: cassandra-dtest
Updated Branches:
  refs/heads/master a32d3ad1f -> 3d760e6da


Fix read_repair_test.py @parametrize usage


Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/3d760e6d
Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/3d760e6d
Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/3d760e6d

Branch: refs/heads/master
Commit: 3d760e6daf6926a296e12d57b55dd50801c3b9fc
Parents: a32d3ad
Author: Stefan Podkowinski <[email protected]>
Authored: Mon Aug 27 15:23:30 2018 +0200
Committer: Stefan Podkowinski <[email protected]>
Committed: Mon Aug 27 15:23:30 2018 +0200

----------------------------------------------------------------------
 read_repair_test.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/3d760e6d/read_repair_test.py
----------------------------------------------------------------------
diff --git a/read_repair_test.py b/read_repair_test.py
index 91bc91e..ad60238 100644
--- a/read_repair_test.py
+++ b/read_repair_test.py
@@ -677,7 +677,7 @@ class TestReadRepairGuarantees(Tester):
     @since('4.0')
     @pytest.mark.parametrize("repair_type,expect_monotonic",
                              (('blocking', True), ('none', False)),
-                             ids=('blocking', 'async', 'none'))
+                             ids=('blocking', 'none'))
     def test_monotonic_reads(self, repair_type, expect_monotonic):
         """ 
         tests how read repair provides, or breaks, read monotonicity
@@ -718,7 +718,7 @@ class TestReadRepairGuarantees(Tester):
     @since('4.0')
     @pytest.mark.parametrize("repair_type,expect_atomic",
                              (('blocking', False), ('none', True)),
-                             ids=('blocking', 'async', 'none'))
+                             ids=('blocking', 'none'))
     def test_atomic_writes(self, repair_type, expect_atomic):
         """ 
         tests how read repair provides, or breaks, write atomicity


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

Reply via email to