Repository: cassandra-dtest Updated Branches: refs/heads/master b76b49e6a -> 5276d89b6
Fix typo in write_failures_test: enocde() -> encode() Project: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/commit/5276d89b Tree: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/tree/5276d89b Diff: http://git-wip-us.apache.org/repos/asf/cassandra-dtest/diff/5276d89b Branch: refs/heads/master Commit: 5276d89b64593f2809ed050ef8aefbf7cd10eb18 Parents: b76b49e Author: Stefan Podkowinski <[email protected]> Authored: Wed Jun 27 08:42:17 2018 +0200 Committer: Stefan Podkowinski <[email protected]> Committed: Wed Jun 27 08:42:17 2018 +0200 ---------------------------------------------------------------------- write_failures_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra-dtest/blob/5276d89b/write_failures_test.py ---------------------------------------------------------------------- diff --git a/write_failures_test.py b/write_failures_test.py index 67bb22a..ece6245 100644 --- a/write_failures_test.py +++ b/write_failures_test.py @@ -224,7 +224,7 @@ class TestWriteFailures(Tester): with pytest.raises(self.expected_expt): client.insert('key1'.encode(), thrift_types.ColumnParent('mytable'), - thrift_types.Column('value'.encode(), 'Value 1'.enocde(), 0), + thrift_types.Column('value'.encode(), 'Value 1'.encode(), 0), thrift_types.ConsistencyLevel.ALL) client.transport.close() --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
