We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3714c1 commit 623f91bCopy full SHA for 623f91b
pandas/io/tests/test_gbq.py
@@ -1065,7 +1065,7 @@ def tearDown(self):
1065
pass
1066
1067
def test_upload_data_as_service_account_with_key_path(self):
1068
- destination_table = DESTINATION_TABLE + "11"
+ destination_table = "{0}.{1}".format(DATASET_ID + "2", TABLE_ID + "1")
1069
1070
test_size = 10
1071
df = make_mixed_dataframe_v2(test_size)
@@ -1124,10 +1124,7 @@ def tearDown(self):
1124
1125
1126
def test_upload_data_as_service_account_with_key_contents(self):
1127
- raise nose.SkipTest(
1128
- "flaky test")
1129
-
1130
- destination_table = DESTINATION_TABLE + "12"
+ destination_table = "{0}.{1}".format(DATASET_ID + "3", TABLE_ID + "1")
1131
1132
1133
0 commit comments