mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Test: Corrected test to match attmod behavior
This commit is contained in:
parent
a268fac484
commit
daf56db8ec
1 changed files with 3 additions and 3 deletions
|
@ -78,9 +78,9 @@ class TestFilterPrefix(TestCase):
|
|||
def test_list_project_not_foo(self):
|
||||
"""Filter on not project name."""
|
||||
code, out, err = self.t('list project.not:foo')
|
||||
self.assertIn('one', out)
|
||||
self.assertIn('two', out)
|
||||
self.assertIn('three', out)
|
||||
self.assertNotIn('one', out)
|
||||
self.assertNotIn('two', out)
|
||||
self.assertNotIn('three', out)
|
||||
self.assertIn('four', out)
|
||||
self.assertIn('five', out)
|
||||
self.assertIn('six', out)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue