Skip to content

Commit 623108c

Browse files
committed
Fix test
1 parent fc2ab1b commit 623108c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/e2e/Adapter/Base.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1360,7 +1360,7 @@ public function testSchemaAttributes(): void
13601360
$this->assertEquals('_tenant', $attribute['columnName']);
13611361
$this->assertEquals('bigint', $attribute['dataType']);
13621362
$this->assertEquals('20', $attribute['numericPrecision']);
1363-
$this->assertEquals('bigint unsigned', $attribute['columnType']);
1363+
$this->assertTrue(in_array($attribute['columnType'], ['bigint unsigned', 'bigint(20) unsigned']));
13641364
}
13651365
}
13661366

0 commit comments

Comments
 (0)