We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8edd6a2 commit bc1ceb8Copy full SHA for bc1ceb8
tests/SchemaTest.php
@@ -458,7 +458,7 @@ public function testGetTables()
458
$this->assertNotEquals('test_view', $table['name'], 'Standard views should not be included in the result of getTables.');
459
460
if ($table['name'] === self::COLL_1) {
461
- $this->assertEquals(8192, $table['size']);
+ $this->assertGreaterThanOrEqual(8192, $table['size']);
462
$this->assertEquals($dbName, $table['schema']);
463
$this->assertEquals($dbName . '.' . self::COLL_1, $table['schema_qualified_name']);
464
$found = true;
0 commit comments