Test: Switched from 'out' to 'err' for a footnote message

This commit is contained in:
Paul Beckingham 2015-08-07 23:54:43 -04:00
parent 3ef8112173
commit 76f9475950

View file

@ -154,7 +154,7 @@ class TestBug1652(TestCase):
self.t.config("confirmation", "off")
code, out, err = self.t("1 rm")
self.assertIn("Deleted 1 task.", out)
self.assertNotIn("No matches.", out)
self.assertNotIn("No matches.", err)
if __name__ == "__main__":