Fix build failure
[sim/a1-interface.git] / near-rt-ric-simulator / tests / test_osc_2_1_0.py
index b1d947b..b54e417 100644 (file)
@@ -1,5 +1,6 @@
 #  ============LICENSE_START===============================================
 #  Copyright (C) 2021-2023 Nordix Foundation. All rights reserved.
+#  Copyright (C) 2023-2024 OpenInfra Foundation Europe. All Rights Reserved
 #  ========================================================================
 #  Licensed under the Apache License, Version 2.0 (the "License");
 #  you may not use this file except in compliance with the License.
@@ -589,7 +590,7 @@ def test_notificationDestination(client):
     # === API: Update policy instance pi2 of type: 2 ==="
     with open(test_data) as json_file:
         payload = json.load(json_file)
-        response = client.put(SERVER_URL+"a1-p/policytypes/2/policies/pi2?notificationDestination=http://localhost:8085/statustest", headers=header, data=json.dumps(payload))
+        response = client.put(SERVER_URL+"a1-p/policytypes/2/policies/pi2?notificationDestination=http://localhost:8086/statustest", headers=header, data=json.dumps(payload))
 
     assert response.status_code == 202
     result = response.data
@@ -604,6 +605,9 @@ def test_sendstatus(client):
     test_data = get_testdata_dir() + 'pi2.json'
     header = { "Content-Type" : "application/json" }
 
+    # Timeout can be removed with polling the endpoints if required
+    proc.join(timeout=10)
+
     # === Send status for pi2===
     with open(test_data) as json_file:
         payload = json.load(json_file)