From 23ed15f58c0575dcdf6a7bc180c146b4daaf16fa Mon Sep 17 00:00:00 2001 From: Mika Date: Fri, 6 Mar 2026 10:41:07 +0000 Subject: [PATCH] Add retry_mechanism/tests/data/sample_input.json --- retry_mechanism/tests/data/sample_input.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 retry_mechanism/tests/data/sample_input.json diff --git a/retry_mechanism/tests/data/sample_input.json b/retry_mechanism/tests/data/sample_input.json new file mode 100644 index 0000000..95c9d13 --- /dev/null +++ b/retry_mechanism/tests/data/sample_input.json @@ -0,0 +1,20 @@ +{ + "cases": [ + { + "description": "Positive Delta t should remain unchanged", + "dt": 0.045 + }, + { + "description": "Negative Delta t triggers retry", + "dt": -0.23 + }, + { + "description": "Zero Delta t edge case", + "dt": 0.0 + }, + { + "description": "Barely negative Delta t requiring minimal correction", + "dt": -1e-06 + } + ] +} \ No newline at end of file