You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by gd...@apache.org on 2010/06/03 15:31:05 UTC

svn commit: r950992 - /cassandra/branches/cassandra-0.6/test/system/test_server.py

Author: gdusbabek
Date: Thu Jun  3 13:31:05 2010
New Revision: 950992

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

Modified:
    cassandra/branches/cassandra-0.6/test/system/test_server.py

Modified: cassandra/branches/cassandra-0.6/test/system/test_server.py
URL: http://svn.apache.org/viewvc/cassandra/branches/cassandra-0.6/test/system/test_server.py?rev=950992&r1=950991&r2=950992&view=diff
==============================================================================
--- cassandra/branches/cassandra-0.6/test/system/test_server.py (original)
+++ cassandra/branches/cassandra-0.6/test/system/test_server.py Thu Jun  3 13:31:05 2010
@@ -913,7 +913,7 @@ class TestMutations(CassandraTester):
         kspaces = client.describe_keyspaces()
         assert len(kspaces) == 5, kspaces # ['Keyspace1', 'Keyspace2', 'Keyspace3', 'Keyspace4', 'system']
         ks1 = client.describe_keyspace("Keyspace1")
-        assert set(ks1.keys()) == set(['Super1', 'Standard1', 'Standard2', 'StandardLong1', 'StandardLong2', 'Super3', 'Super2', 'Super4'])
+        assert set(ks1.keys()) == set(['Super1', 'Standard1', 'Standard2', 'Standard3', 'Standard4', 'StandardLong1', 'StandardLong2', 'Super3', 'Super2', 'Super4'])
         sysks = client.describe_keyspace("system")
 
     def test_describe(self):