From 3050aebb48f2e851417595ed924bb9898e22c3fc Mon Sep 17 00:00:00 2001 From: David Grudl Date: Fri, 6 Apr 2018 03:44:14 +0200 Subject: [PATCH] typo --- tests/dibi/Result.types.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dibi/Result.types.phpt b/tests/dibi/Result.types.phpt index 5620ebc3..c0f17f20 100644 --- a/tests/dibi/Result.types.phpt +++ b/tests/dibi/Result.types.phpt @@ -11,7 +11,7 @@ $conn->loadFile(__DIR__ . "/data/$config[system].sql"); $res = $conn->query('SELECT * FROM [customers]'); // auto-converts this column to integer -$res->setType('customer_id', Dibi\Type::DATETIME, 'H:i j.n.Y'); +$res->setType('customer_id', Dibi\Type::DATETIME); Assert::equal(new Dibi\Row([ 'customer_id' => new Dibi\DateTime('1970-01-01 01:00:01'),