From daf3e79706c4dd0e7efaa36044d03cc0d5b87a0f Mon Sep 17 00:00:00 2001 From: Takashi Matsuo Date: Fri, 22 May 2015 16:31:47 -0700 Subject: [PATCH] Fixed broken travis build. Fixes #35. --- bigquery/tests/test_async_query.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bigquery/tests/test_async_query.py b/bigquery/tests/test_async_query.py index 412f13af5d60..d2dd58472316 100644 --- a/bigquery/tests/test_async_query.py +++ b/bigquery/tests/test_async_query.py @@ -34,9 +34,8 @@ def test_async_query(self): class TestAsyncRunner(tests.CloudBaseTest): def test_async_query_runner(self): - test_bucket_name = os.environ.get(tests.BUCKET_NAME_ENV) test_project_id = os.environ.get(tests.PROJECT_ID_ENV) - answers = [test_bucket_name, test_project_id, 'n', + answers = [test_project_id, self.constants['query'], 'n', '1', '1'] with tests.mock_raw_input(answers): main()