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 de10e6c commit 38d4640Copy full SHA for 38d4640
bigquery/tests/system.py
@@ -1262,7 +1262,7 @@ def test_query_results_to_dataframe(self):
1262
self.assertEqual(len(df), 10) # verify the number of rows
1263
column_names = ['id', 'author', 'time_ts', 'dead']
1264
self.assertEqual(list(df), column_names) # verify the column names
1265
- exp_datatypes = {'id': int, 'author': str,
+ exp_datatypes = {'id': int, 'author': six.text_type,
1266
'time_ts': pandas.Timestamp, 'dead': bool}
1267
for index, row in df.iterrows():
1268
for col in column_names:
0 commit comments