Repository: cassandra-dtest Updated Branches: refs/heads/master 39e223fe8 -> 7c05a111a
http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/7c05a111/write_failures_test.py ---------------------------------------------------------------------- diff --git a/write_failures_test.py b/write_failures_test.py index 17ce50e..67bb22a 100644 --- a/write_failures_test.py +++ b/write_failures_test.py @@ -222,9 +222,9 @@ class TestWriteFailures(Tester): client.set_keyspace(KEYSPACE) with pytest.raises(self.expected_expt): - client.insert('key1', + client.insert('key1'.encode(), thrift_types.ColumnParent('mytable'), - thrift_types.Column('value', 'Value 1', 0), + thrift_types.Column('value'.encode(), 'Value 1'.enocde(), 0), thrift_types.ConsistencyLevel.ALL) client.transport.close() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
