From dfedfa9f4cab634d7c332580e133116ab33a2c48 Mon Sep 17 00:00:00 2001 From: tomgond Date: Mon, 1 Apr 2024 19:42:56 +0300 Subject: [PATCH] Fix test to fit new time-delta format --- tests/operations/tests/DateTime.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/operations/tests/DateTime.mjs b/tests/operations/tests/DateTime.mjs index df6d6677..16848bcc 100644 --- a/tests/operations/tests/DateTime.mjs +++ b/tests/operations/tests/DateTime.mjs @@ -38,7 +38,7 @@ TestRegister.addTests([ recipeConfig: [ { op: "DateTime Delta", - args: ["Standard date and time", "DD/MM/YYYY HH:mm:ss", "+0.0:01:0"], + args: ["Standard date and time", "DD/MM/YYYY HH:mm:ss", "Add", 0, 0, 1, 0], }, ], }, @@ -49,7 +49,7 @@ TestRegister.addTests([ recipeConfig: [ { op: "DateTime Delta", - args: ["Standard date and time", "DD/MM/YYYY HH:mm:ss", "-0.1:00:0"], + args: ["Standard date and time", "DD/MM/YYYY HH:mm:ss", "Subtract", 0, 1, 0, 0], }, ], },