diff options
Diffstat (limited to 'test/it_dbi.t')
-rwxr-xr-x | test/it_dbi.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/it_dbi.t b/test/it_dbi.t index 9d121f3..b453da2 100755 --- a/test/it_dbi.t +++ b/test/it_dbi.t @@ -209,7 +209,7 @@ is($record->select(['x' => $value]), 1, "select 32bit integer without float repr $value = pow(2, 53) + 1; $record->update(['z' => $value]); -is($record->z, $value, "update 64bit integer without double representation"); +is($record->z, "$value", "update 64bit integer without double representation"); is($record->select(['z' => $value]), 1, "select 64bit integer without double representation"); $record->update(['foo' => "10", 'x' => 10]); |