Test: Corrected test to match attmod behavior

This commit is contained in:
Paul Beckingham 2015-07-19 16:17:11 -04:00
parent a268fac484
commit daf56db8ec

View file

@ -78,9 +78,9 @@ class TestFilterPrefix(TestCase):
def test_list_project_not_foo(self): def test_list_project_not_foo(self):
"""Filter on not project name.""" """Filter on not project name."""
code, out, err = self.t('list project.not:foo') code, out, err = self.t('list project.not:foo')
self.assertIn('one', out) self.assertNotIn('one', out)
self.assertIn('two', out) self.assertNotIn('two', out)
self.assertIn('three', out) self.assertNotIn('three', out)
self.assertIn('four', out) self.assertIn('four', out)
self.assertIn('five', out) self.assertIn('five', out)
self.assertIn('six', out) self.assertIn('six', out)