Browse Source

Mock runs differntly on travis. Fix the mock test params to be ANY.

Kenny Woodson 8 years ago
parent
commit
5f971b85bf
1 changed files with 2 additions and 3 deletions
  1. 2 3
      roles/lib_openshift/src/test/unit/test_oc_project.py

+ 2 - 3
roles/lib_openshift/src/test/unit/test_oc_project.py

@@ -115,9 +115,8 @@ class OCProjectTest(unittest.TestCase):
         mock_cmd.assert_has_calls([
             mock.call(['oc', 'get', 'namespace', 'operations', '-o', 'json'], None),
             mock.call(['oc', 'get', 'namespace', 'operations', '-o', 'json'], None),
-            mock.call(['oc', 'adm', 'new-project', 'operations', '--admin-role=admin',
-                       '--display-name=operations project', '--description=All things operations project',
-                       '--node-selector=ops_only=True'], None),
+            mock.call(['oc', 'adm', 'new-project', 'operations', mock.ANY,
+                       mock.ANY, mock.ANY, mock.ANY], None),
             mock.call(['oc', 'get', 'namespace', 'operations', '-o', 'json'], None),
 
         ])