diff options
author | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2017-03-06 16:16:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-06 16:16:43 +0100 |
commit | 354d4e41b4693bc055dfb0a8e302088e0b978408 (patch) | |
tree | b8d4a947aa0a97ae8f25a099d45a7d76cf5faf34 /roles/lib_utils/src | |
parent | 6ecb86b2fcc36e3383d86395d3be0a443e12981e (diff) | |
parent | 3763417a1351448d2be60afb227af138aa22818e (diff) | |
download | openshift-354d4e41b4693bc055dfb0a8e302088e0b978408.tar.gz openshift-354d4e41b4693bc055dfb0a8e302088e0b978408.tar.bz2 openshift-354d4e41b4693bc055dfb0a8e302088e0b978408.tar.xz openshift-354d4e41b4693bc055dfb0a8e302088e0b978408.zip |
Merge pull request #3563 from rhcarvalho/misc-cleanup
Misc cleanup
Diffstat (limited to 'roles/lib_utils/src')
-rwxr-xr-x | roles/lib_utils/src/test/unit/test_yedit.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/roles/lib_utils/src/test/unit/test_yedit.py b/roles/lib_utils/src/test/unit/test_yedit.py index ce5e027a7..a22cdee56 100755 --- a/roles/lib_utils/src/test/unit/test_yedit.py +++ b/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): |