We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cd6991 commit 4d52f95Copy full SHA for 4d52f95
pandas_gbq/tests/test_gbq.py
@@ -1171,6 +1171,7 @@ def test_upload_chinese_unicode_data(self):
1171
project_id=_get_project_id())
1172
1173
assert result['num_rows'][0] == test_size
1174
+ tm.assert_series_equal(result['A'], df['A'])
1175
1176
def test_upload_other_unicode_data(self):
1177
test_id = "3"
@@ -1191,7 +1192,8 @@ def test_upload_other_unicode_data(self):
1191
1192
self.destination_table + test_id),
1193
1194
- assert result['num_rows'][0] == test_si
1195
+ assert result['num_rows'][0] == test_size
1196
+ tm.assert_series_equal(result['string'], df['string'])
1197
1198
def test_generate_schema(self):
1199
df = tm.makeMixedDataFrame()
0 commit comments