You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by sl...@apache.org on 2011/11/25 13:00:51 UTC

svn commit: r1206131 - /cassandra/branches/cassandra-1.0/test/system/test_thrift_server.py

Author: slebresne
Date: Fri Nov 25 12:00:50 2011
New Revision: 1206131

URL: http://svn.apache.org/viewvc?rev=1206131&view=rev
Log:
fix system test

Modified:
    cassandra/branches/cassandra-1.0/test/system/test_thrift_server.py

Modified: cassandra/branches/cassandra-1.0/test/system/test_thrift_server.py
URL: http://svn.apache.org/viewvc/cassandra/branches/cassandra-1.0/test/system/test_thrift_server.py?rev=1206131&r1=1206130&r2=1206131&view=diff
==============================================================================
--- cassandra/branches/cassandra-1.0/test/system/test_thrift_server.py (original)
+++ cassandra/branches/cassandra-1.0/test/system/test_thrift_server.py Fri Nov 25 12:00:50 2011
@@ -1197,7 +1197,7 @@ class TestMutations(ThriftTester):
         assert len(kspaces) == 3, kspaces # ['Keyspace2', 'Keyspace1', 'system']
 
         sysks = client.describe_keyspace("system")
-        assert sysks == kspaces[2]
+        assert sysks in kspaces
 
         ks1 = client.describe_keyspace("Keyspace1")
         assert ks1.strategy_options['replication_factor'] == '1', ks1.strategy_options