Skip to content

Commit fb6a2f6

Browse files
committed
Add private key to unicode tests.
1 parent 04cf63c commit fb6a2f6

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

pandas_gbq/tests/test_gbq.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1169,7 +1169,8 @@ def test_upload_chinese_unicode_data(self):
11691169

11701170
result_df = gbq.read_gbq("SELECT * FROM {0}".format(
11711171
self.destination_table + test_id),
1172-
project_id=_get_project_id())
1172+
project_id=_get_project_id(),
1173+
private_key=_get_private_key_path())
11731174

11741175
assert len(result_df) == test_size
11751176

@@ -1198,7 +1199,8 @@ def test_upload_other_unicode_data(self):
11981199

11991200
result_df = gbq.read_gbq("SELECT * FROM {0}".format(
12001201
self.destination_table + test_id),
1201-
project_id=_get_project_id())
1202+
project_id=_get_project_id(),
1203+
private_key=_get_private_key_path())
12021204

12031205
assert len(result_df) == test_size
12041206

prof/combined.prof

202 KB
Binary file not shown.
202 KB
Binary file not shown.

0 commit comments

Comments
 (0)