Skip to content

Commit

Permalink
BigQuery: Remove unnecessary line from client.create_table() test (#4043
Browse files Browse the repository at this point in the history
)
  • Loading branch information
alixhami authored Sep 23, 2017
1 parent da41ad4 commit 08141bd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions bigquery/tests/unit/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,10 +505,7 @@ def test_create_table_w_schema_and_query(self):
{'name': 'full_name', 'type': 'STRING', 'mode': 'REQUIRED'},
{'name': 'age', 'type': 'INTEGER', 'mode': 'REQUIRED'}]
},
'view': {
'query': query,
'useLegacySql': True
},
'view': {'query': query},
}
schema = [
SchemaField('full_name', 'STRING', mode='REQUIRED'),
Expand Down

0 comments on commit 08141bd

Please sign in to comment.