Skip to content

Commit efec85e

Browse files
committed
wait for the execute request in
1 parent 75871dd commit efec85e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/backward_compatible/sql_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,7 +617,7 @@ def value_factory(v):
617617
self._populate_map(entry_count, value_factory)
618618

619619
expected = [(i, value_factory(i)) for i in range(entry_count)]
620-
with self.client.sql.execute('SELECT __key, this FROM "%s"' % self.map_name) as result:
620+
with self.execute('SELECT __key, this FROM "%s"' % self.map_name) as result:
621621
# Verify that both row[integer] and row[string] works
622622
six.assertCountEqual(self, expected, [(row[0], row["this"]) for row in result])
623623

0 commit comments

Comments
 (0)