From 7ccab092904dc629a1027381ff089c700d776b7b Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 3 Nov 2021 06:55:19 -0300 Subject: [PATCH] Bug 24850: suspended_until is a date-time Signed-off-by: Tomas Cohen Arazi Signed-off-by: Martin Renvoize --- t/db_dependent/api/v1/holds.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/db_dependent/api/v1/holds.t b/t/db_dependent/api/v1/holds.t index 22e9f3e5c6..006c61659a 100755 --- a/t/db_dependent/api/v1/holds.t +++ b/t/db_dependent/api/v1/holds.t @@ -163,7 +163,7 @@ my $post_data = { }; my $patch_data = { priority => 2, - suspended_until => output_pref( { dt => $suspended_until, dateformat => 'iso', dateonly => 1 } ), + suspended_until => output_pref( { dt => $suspended_until, dateformat => 'rfc3339' } ), }; subtest "Test endpoints without authentication" => sub { -- 2.20.1