From 7d5fad721e44a2bc6145c64b417f3ee657bf411d Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 2 Aug 2015 10:13:37 -0400 Subject: [PATCH] Test: Removed another time-sensitive test --- test/tag.t | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/test/tag.t b/test/tag.t index 4e52f93f4..1a28cee2d 100755 --- a/test/tag.t +++ b/test/tag.t @@ -299,18 +299,16 @@ class TestVirtualTags(TestCase): self.assertNotIn("completed", out) self.assertNotIn("deleted", out) self.assertNotIn("minimal", out) - self.assertIn("maximal", out) self.assertNotIn("blocked", out) - # Ignore due_eom, which may be a different week. + # Ignore maximal, due_eom, which may be a different week. self.assertIn("due_eow", out) code, out, err = self.t("-WEEK all") self.assertIn("completed", out) self.assertIn("deleted", out) self.assertIn("minimal", out) - self.assertNotIn("maximal", out) self.assertIn("blocked", out) - # Ignore due_eom, which may be a different week. + # Ignore maximal, due_eom, which may be a different week. self.assertNotIn("due_eow", out) def test_virtual_tag_ACTIVE(self):