Skip to content

Commit 7a0a97f

Browse files
authored
Fix Py3 breakage in new system test. (googleapis#5474)
Added in PR googleapis#5360.
1 parent ef9dd47 commit 7a0a97f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigtable/tests/system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def test_drop_by_prefix_table(self):
446446
read_rows_count = 0
447447

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

452452
self.assertEqual(expected_rows_count, read_rows_count)

0 commit comments

Comments
 (0)