diff options
author | Lukasz Rajewski <lukasz.rajewski@orange.com> | 2020-05-11 17:38:06 +0200 |
---|---|---|
committer | Lukasz Rajewski <lukasz.rajewski@orange.com> | 2020-05-11 20:03:16 +0200 |
commit | 76efb65c4fffbd5b940a75c36329a2e0409be382 (patch) | |
tree | d8185fa040174641728c1dbbdd66085733c736dd /test | |
parent | 1b493a741b87880181a027fe102d295fcbd6f7cb (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')
-rw-r--r-- | test/test_PolicyCalls.py | 2 |
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): |