Skip to content

Commit

Permalink
Narrowed the time filter in the system test (#1185)
Browse files Browse the repository at this point in the history
  • Loading branch information
Takashi Matsuo authored Jul 20, 2018
1 parent c358e8c commit bc22ba1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BigQuery/tests/System/ManageJobsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit bc22ba1

Please sign in to comment.