Skip to content

Commit

Permalink
Fix Py3 breakage in new system test.
Browse files Browse the repository at this point in the history
Added in PR #5360.
  • Loading branch information
tseaver committed Jun 12, 2018
1 parent 06af709 commit 63c61f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bigtable/tests/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def test_drop_by_prefix_table(self):
read_rows_count = 0

for row in read_rows:
if row.row_key.decode('utf-8') in row_keys:
if row.row_key in row_keys:
read_rows_count += 1

self.assertEqual(expected_rows_count, read_rows_count)
Expand Down

0 comments on commit 63c61f4

Please sign in to comment.