You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by dc...@apache.org on 2021/01/08 01:23:24 UTC

[cassandra-dtest] branch trunk updated: pytest is not meant to run internal parameterized test method

This is an automated email from the ASF dual-hosted git repository.

dcapwell pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/cassandra-dtest.git


The following commit(s) were added to refs/heads/trunk by this push:
     new b6ca1c7  pytest is not meant to run internal parameterized test method
b6ca1c7 is described below

commit b6ca1c75d233872a13d519a03d2e3ab6a321e20e
Author: Adam Holmberg <ad...@datastax.com>
AuthorDate: Tue Jan 5 16:24:08 2021 -0600

    pytest is not meant to run internal parameterized test method
    
    patch by Adam Holmberg; reviewed by David Capwell for CASSANDRA-16331
---
 upgrade_tests/thrift_upgrade_test.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/upgrade_tests/thrift_upgrade_test.py b/upgrade_tests/thrift_upgrade_test.py
index 878d265..cad1d7e 100644
--- a/upgrade_tests/thrift_upgrade_test.py
+++ b/upgrade_tests/thrift_upgrade_test.py
@@ -446,12 +446,12 @@ class TestUpgradeTo40(Tester):
         return self._connect(self.cluster.nodelist()[0])
 
     def test_keys_index_3_0_created(self):
-        self.test_keys_index_3_x_created('github:apache/cassandra-3.0')
+        self._test_keys_index_3_x_created('github:apache/cassandra-3.0')
 
     def test_keys_index_3_11_created(self):
-        self.test_keys_index_3_x_created('github:apache/cassandra-3.11')
+        self._test_keys_index_3_x_created('github:apache/cassandra-3.11')
 
-    def test_keys_index_3_x_created(self, from_version):
+    def _test_keys_index_3_x_created(self, from_version):
         cql, thrift = self.prepare(start_version=from_version,
                                    num_nodes=3,
                                    rf=3)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org