From bc22ba1dd4644e0823abc8b07cf35f5c8ce756e7 Mon Sep 17 00:00:00 2001 From: Takashi Matsuo Date: Fri, 20 Jul 2018 11:28:19 -0700 Subject: [PATCH] Narrowed the time filter in the system test (#1185) --- BigQuery/tests/System/ManageJobsTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BigQuery/tests/System/ManageJobsTest.php b/BigQuery/tests/System/ManageJobsTest.php index a618920fce2e..3c9dacecd724 100644 --- a/BigQuery/tests/System/ManageJobsTest.php +++ b/BigQuery/tests/System/ManageJobsTest.php @@ -59,8 +59,8 @@ public function testListJobsWithTimeFilter() $jobId = $job->id(); $creationTime = $info['statistics']['creationTime']; $jobs = self::$client->jobs([ - 'maxCreationTime' => $creationTime + 1000, - 'minCreationTime' => $creationTime - 1000, + 'maxCreationTime' => $creationTime + 1, + 'minCreationTime' => $creationTime - 1, ]); $job = null;