1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 14:16:39 +02:00

test: fix for PHP 7.3

This commit is contained in:
David Grudl
2018-09-17 13:28:10 +02:00
parent 689597a237
commit 6a4f77b684

View File

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