Skip to content

Commit

Permalink
Resolve PG tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ajupazhamayil committed May 16, 2024
1 parent 143e700 commit 677d853
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Spanner/tests/System/PgReadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public function testReadWithLimit()
};

$limitCount = count(iterator_to_array($res(10)));
$unlimitCount = count(iterator_to_array($res(null)));
$unlimitCount = count(iterator_to_array($res(0)));

$this->assertEquals(10, $limitCount);
$this->assertNotEquals($limitCount, $unlimitCount);
Expand All @@ -328,7 +328,7 @@ public function testReadOverIndexWithLimit()
};

$limitCount = count(iterator_to_array($res(10)));
$unlimitCount = count(iterator_to_array($res(null)));
$unlimitCount = count(iterator_to_array($res(0)));

$this->assertEquals(10, $limitCount);
$this->assertNotEquals($limitCount, $unlimitCount);
Expand Down

0 comments on commit 677d853

Please sign in to comment.