mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Test: Corrected test to use supported features
This commit is contained in:
parent
29d6eceda1
commit
564a24b35e
1 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue