From 7f612e1ebf3b1afc93d1c037ccaf2163b9e18083 Mon Sep 17 00:00:00 2001 From: Claire Gaestel <213631+nyobe@users.noreply.github.com> Date: Fri, 6 Dec 2024 17:44:22 -0800 Subject: [PATCH] wip test --- examples/examples_yaml_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/examples_yaml_test.go b/examples/examples_yaml_test.go index 041844e1..3e8c56a1 100644 --- a/examples/examples_yaml_test.go +++ b/examples/examples_yaml_test.go @@ -313,7 +313,7 @@ func TestYamlSchedulesExample(t *testing.T) { }) } - // create some one-time schedules + // create some initial one-time schedules initialDir := writeScheduleProgram(time.Now().Add(1 * time.Hour)) // and then reschedule them rescheduleDir := writeScheduleProgram(time.Now().Add(2 * time.Hour)) @@ -338,6 +338,7 @@ func TestYamlSchedulesExample(t *testing.T) { }, }) + // expect the update to replace the schedules t.Log("FIRST") t.Log(first.String()) t.Log("SECOND")