Skip to content

Commit 38d4640

Browse files
authored
fixes python 2.7 system test error with PR 4354 (#4528)
1 parent de10e6c commit 38d4640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bigquery/tests/system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1262,7 +1262,7 @@ def test_query_results_to_dataframe(self):
12621262
self.assertEqual(len(df), 10) # verify the number of rows
12631263
column_names = ['id', 'author', 'time_ts', 'dead']
12641264
self.assertEqual(list(df), column_names) # verify the column names
1265-
exp_datatypes = {'id': int, 'author': str,
1265+
exp_datatypes = {'id': int, 'author': six.text_type,
12661266
'time_ts': pandas.Timestamp, 'dead': bool}
12671267
for index, row in df.iterrows():
12681268
for col in column_names:

0 commit comments

Comments
 (0)