There was an error while loading. Please reload this page.
1 parent a02c4c3 commit 72187d8Copy full SHA for 72187d8
tests/system.py
@@ -321,11 +321,11 @@ def test_get_table_w_public_dataset(self):
321
322
def test_list_partitions(self):
323
table_ref = DatasetReference(
324
- 'bigquery-partition-samples',
325
- 'samples').table('stackoverflow_comments')
+ 'bigquery-public-data',
+ 'ethereum_blockchain').table('blocks')
326
all_rows = Config.CLIENT.list_partitions(table_ref)
327
- self.assertIn('20150508', all_rows)
328
- self.assertEquals(2066, len(all_rows))
+ self.assertIn('20180801', all_rows)
+ self.assertGreater(len(all_rows), 1000)
329
330
def test_list_tables(self):
331
DATASET_ID = _make_dataset_id('list_tables')
0 commit comments