1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-11 16:44:30 +02:00

test: fix for PHP 7.3

This commit is contained in:
David Grudl
2018-09-17 13:28:10 +02:00
parent 89987f0cee
commit 7a49609468

View File

@@ -17,7 +17,7 @@ $conn->loadFile(__DIR__ . "/data/$config[system].sql");
$e = Assert::exception(function () use ($conn) {
$conn->query('SELECT');
}, Dibi\DriverException::class, '%a% syntax error', 1);
}, Dibi\DriverException::class, '%a%', 1);
Assert::same('SELECT', $e->getSql());