File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1433,7 +1433,7 @@ def setUp(self):
14331433 self .table = 'table'
14341434 self .project = 'project'
14351435 self .dataset = 'dataset'
1436- self .query = 'SELECT "foo" bar'
1436+ self .query = 'SELECT "bar" foo, " foo" bar'
14371437 self .client = client .BigQueryClient (self .mock_bq_service , self .project )
14381438 self .body = {
14391439 'view' : {'query' : self .query },
@@ -1472,8 +1472,8 @@ def test_view_create_success(self):
14721472 """Ensure that if creating the table succeeds, True is returned,
14731473 or if swallow_results is False the actual response is returned."""
14741474
1475- self .mock_tables .insert .return_value .execute .side_effect = [
1476- {'status' : 'bar' }]
1475+ self .mock_tables .insert .return_value .execute .side_effect = [{
1476+ 'status' : 'foo' }, {'status' : 'bar' }]
14771477
14781478 actual = self .client .create_view (self .dataset , self .table ,
14791479 self .query )
You can’t perform that action at this time.
0 commit comments