Skip to content

Commit

Permalink
assert client result is a tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
kszucs committed Jan 9, 2018
1 parent f84f0f2 commit d01d3a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/columns/test_interval.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ def test_all(self):
self.assertEqual(cli_result, '1\t2\t3\t4\t5\t6\t7\n')

client_result = self.client.execute(query)
self.assertEqual(client_result, cli_result)
self.assertEqual(client_result, [(1, 2, 3, 4, 5, 6, 7)])

0 comments on commit d01d3a0

Please sign in to comment.