From bbc77d9fe769fe06f9669d234e634a8672bd2a37 Mon Sep 17 00:00:00 2001 From: Nathan Gass Date: Thu, 7 Nov 2024 15:32:27 +0100 Subject: adapt to stricter is function --- test/it_dbi.t | 2 +- test/it_url.t | 2 +- 2 files changed, 2 insertions(+), 2 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]); diff --git a/test/it_url.t b/test/it_url.t index 71469a8..b86f711 100755 --- a/test/it_url.t +++ b/test/it_url.t @@ -143,7 +143,7 @@ ok( ); is( $response['status'], - '200', + 200, 'Reponse status = 200' ); is( -- cgit v1.2.3