diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/it_dbi.t | 4 |
1 files changed, 2 insertions, 2 deletions
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" ); |