From ce09e249ea897c3b92dc44e716ffa126a4b10279 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sat, 18 Jul 2009 15:15:49 +0100 Subject: [PATCH] Slightly chattier tests/schedule.py. Might help with issue #35. Organization: Straylight/Edgeware From: Richard Kettlewell --- tests/schedule.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/schedule.py b/tests/schedule.py index b0ae1fa..0207408 100755 --- a/tests/schedule.py +++ b/tests/schedule.py @@ -66,6 +66,7 @@ def test(): "schedule-list"]), ""), p = next_playing(c) assert p["track"] == track, "checking right track played" + print " when=%d expected at least %d" % (int(p["when"]), when) assert int(p["when"]) >= when, "checking track played at right time" assert c.schedule_list() == [], "checking schedule is empty" wait_idle(c) -- [mdw]