Skip to content

Commit

Permalink
Delete trailing whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
necnec committed Dec 22, 2016
1 parent df5dec6 commit 8720b03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pandas/io/tests/test_gbq.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,13 +739,13 @@ def test_query_with_parameters(self):
]
}
}
# Test that a query that relies on parameters fails
# Test that a query that relies on parameters fails
# when parameters are not supplied via configuration
with tm.assertRaises(ValueError):
gbq.read_gbq(sql_statement, project_id=_get_project_id(),
private_key=_get_private_key_path())

# Test that the query is successful because we have supplied
# Test that the query is successful because we have supplied
# the correct query parameters via the 'config' option
df = gbq.read_gbq(sql_statement, project_id=_get_project_id(),
private_key=_get_private_key_path(),
Expand All @@ -761,7 +761,7 @@ def test_query_inside_configuration(self):
"useQueryCache": False,
}
}
# Test that it can't pass query both
# Test that it can't pass query both
# inside config and as parameter
with tm.assertRaises(ValueError):
gbq.read_gbq(query_no_use, project_id=_get_project_id(),
Expand Down

0 comments on commit 8720b03

Please sign in to comment.