From 564a24b35e5960d3fbd0f872b408e7938dc19a7b Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 11 Jul 2015 17:24:39 -0400 Subject: [PATCH] Test: Corrected test to use supported features --- test/tw-1468.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/tw-1468.t b/test/tw-1468.t index 6cb3ca74e..e11a55fcd 100755 --- a/test/tw-1468.t +++ b/test/tw-1468.t @@ -49,9 +49,9 @@ class Test1468(TestCase): self.assertIn('buy milk', out) self.assertIn('mow the lawn', out) - def test_attribute_and_implicit_search_filter(self): - """Attribute and implicit search filter (project:home lawn)""" - code, out, err = self.t('list project:home lawn') + def test_attribute_and_search_filter(self): + """Attribute and implicit search filter (project:home /lawn/)""" + code, out, err = self.t('list project:home /lawn/') self.assertEqual(0, code, "Exit code was non-zero ({0})".format(code)) self.assertNotIn('buy milk', out) self.assertIn('mow the lawn', out)