From daf56db8ec37139b9ff80123788ea6fc1b33c5eb Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 19 Jul 2015 16:17:11 -0400 Subject: [PATCH] Test: Corrected test to match attmod behavior --- test/filter-prefix.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/filter-prefix.t b/test/filter-prefix.t index b77cc7b48..9874d85ac 100755 --- a/test/filter-prefix.t +++ b/test/filter-prefix.t @@ -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)