Skip to content

Commit 2ba2a88

Browse files
committed
fix: add bigger delta for table row count
TABLE_ROWS is an estimated value in information_schema, so we need to check against higher delta
1 parent 915c19c commit 2ba2a88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Export/TableListServiceTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function usesConfigurationToListExportableTables()
4848
$this->assertEqualsWithDelta(
4949
$expectedTable->rowCount,
5050
$actualTableValues[$index]->rowCount,
51-
$expectedTable->rowCount * 0.05
51+
$expectedTable->rowCount * 0.2
5252
);
5353
}
5454
}

0 commit comments

Comments
 (0)