Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix long line
  • Loading branch information
jba committed Sep 14, 2017
commit 6054c3b24bd5b3a78b2fc1973a2673b6ce984a2d
3 changes: 2 additions & 1 deletion bigquery/tests/unit/test_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -2230,7 +2230,8 @@ def _call_fut(source_format, schema, dataset, name):

def test_empty_schema(self):
source_format = 'AVRO'
dataset = mock.Mock(project='prediction', spec=['dataset_id', 'project'])
dataset = mock.Mock(project='prediction',
spec=['dataset_id', 'project'])
dataset.dataset_id = 'market' # mock.Mock() treats `name` specially.
table_name = 'chairs'
metadata = self._call_fut(source_format, [], dataset, table_name)
Expand Down