From 5f14f940e0107b22ba00897d64d0d2e129c020f3 Mon Sep 17 00:00:00 2001 From: Konrad Abicht Date: Tue, 29 Aug 2023 14:43:08 +0200 Subject: [PATCH] refined text --- .../store/ARC2_StoreLoadQueryHandlerTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/db_adapter_depended/store/ARC2_StoreLoadQueryHandlerTest.php b/tests/db_adapter_depended/store/ARC2_StoreLoadQueryHandlerTest.php index d0ae808..18af060 100644 --- a/tests/db_adapter_depended/store/ARC2_StoreLoadQueryHandlerTest.php +++ b/tests/db_adapter_depended/store/ARC2_StoreLoadQueryHandlerTest.php @@ -40,6 +40,7 @@ public function testExtendColumns(): void // MySQL $table_fields = $this->store->getDBObject()->fetchList('DESCRIBE arc_g2t'); - $this->assertEquals('int(10) unsigned', $table_fields[0]['Type']); + $this->assertStringContainsString('int', $table_fields[0]['Type']); + $this->assertStringContainsString('unsigned', $table_fields[0]['Type']); } }