Skip to content

Commit

Permalink
Fix lint warning (unused variable)
Browse files Browse the repository at this point in the history
  • Loading branch information
plamut committed Dec 17, 2019
1 parent e75b30e commit 28964f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bigquery/tests/unit/test_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -3939,10 +3939,10 @@ def test_done_w_timeout_and_internal_api_timeout(self):

fake_get_results.assert_called_once()
call_args = fake_get_results.call_args
self.assertEqual(call_args.kwargs.get("timeout"), 8.7)
self.assertEqual(call_args.kwargs.get("timeout"), expected_timeout)

call_args = fake_reload.call_args
self.assertEqual(call_args.kwargs.get("timeout"), 8.7)
self.assertEqual(call_args.kwargs.get("timeout"), expected_timeout)

def test_query_plan(self):
from google.cloud._helpers import _RFC3339_MICROS
Expand Down

0 comments on commit 28964f2

Please sign in to comment.