Browse Source

Remove redundant assertion

That line is testing Python's list.count method, instead of yedit.
The assertion right above is a superset of it, as it checks for
equality to some expected value.
Rodolfo Carvalho 8 years ago
parent
commit
3577754a29
1 changed files with 0 additions and 2 deletions
  1. 0 2
      roles/lib_utils/src/test/unit/test_yedit.py

+ 0 - 2
roles/lib_utils/src/test/unit/test_yedit.py

@@ -200,8 +200,6 @@ class YeditTest(unittest.TestCase):
         yed.append('x:y:z', [5, 6])
         yed.append('x:y:z', [5, 6])
         self.assertTrue(yed.get('x:y:z') == [1, 2, 3, [5, 6], [5, 6]])
-        # pylint: disable=maybe-no-member
-        self.assertTrue(2 == yed.get('x:y:z').count([5, 6]))
         self.assertFalse(yed.exists('x:y:z', 4))
 
     def test_add_item_to_dict(self):