From dbe7df83445a2c37898aa4651d7a6b4c7f745483 Mon Sep 17 00:00:00 2001 From: Tigrov Date: Thu, 1 Feb 2024 18:06:11 +0700 Subject: [PATCH] Fix test --- tests/SchemaTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/SchemaTest.php b/tests/SchemaTest.php index a3e4e2d3..06707880 100644 --- a/tests/SchemaTest.php +++ b/tests/SchemaTest.php @@ -536,7 +536,7 @@ public function testNotConnectionPDO(): void $this->expectException(NotSupportedException::class); $this->expectExceptionMessage('Only PDO connections are supported.'); - $schema->refreshTableSchema('customer'); + $schema->refresh(); } public function testInsertDefaultValues()