aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_PolicyCalls.py
diff options
context:
space:
mode:
authorLukasz Rajewski <lukasz.rajewski@orange.com>2020-05-11 17:38:06 +0200
committerLukasz Rajewski <lukasz.rajewski@orange.com>2020-05-11 20:03:16 +0200
commit76efb65c4fffbd5b940a75c36329a2e0409be382 (patch)
treed8185fa040174641728c1dbbdd66085733c736dd /test/test_PolicyCalls.py
parent1b493a741b87880181a027fe102d295fcbd6f7cb (diff)
Fix for remote policy filtering
Changed a way of processing policies by scope. Before filtering was resulting with None type access exception. Change-Id: Ide6515b4b18a2dc7344e92b32a76d00ba48d4301 Issue-ID: OPTFRA-755 Signed-off-by: Lukasz Rajewski <lukasz.rajewski@orange.com>
Diffstat (limited to 'test/test_PolicyCalls.py')
-rw-r--r--test/test_PolicyCalls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_PolicyCalls.py b/test/test_PolicyCalls.py
index d4dc37f..1ca14dc 100644
--- a/test/test_PolicyCalls.py
+++ b/test/test_PolicyCalls.py
@@ -92,7 +92,7 @@ class TestPolicyCalls(unittest.TestCase):
policy_config_file = yaml.load(yaml_file2)
with patch('osdf.utils.interfaces.RestClient.request', return_value=req_json_obj2):
policies_list = interface.get_by_scope(RestClient, req_json_obj, policy_config_file, 'placement')
- self.assertTrue(policies_list, 'is null')
+ self.assertFalse(policies_list)
self.assertRaises(Exception)
def test_gen_demands(self):