From 673d81f2d40dcc09c716c25f7e71ddc46e97060f Mon Sep 17 00:00:00 2001 From: Christian Schneider Date: Sun, 6 Apr 2008 19:48:51 +0000 Subject: Fixed bogus conversion of NULL to 0 for integer fields --- tests/it_dbi.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/it_dbi.t b/tests/it_dbi.t index afffbae..63c7413 100755 --- a/tests/it_dbi.t +++ b/tests/it_dbi.t @@ -106,8 +106,8 @@ $record->update(array('foo' => "quux")); $record->read(2); is( - array($record->_key, $record->x, $record->foo), - array(2, null, "qux"), + array($record->_key, isset($record->x), $record->foo), + array(2, false, "qux"), "iterate update record 2" ); -- cgit v1.2.3