From 7f47e3d978ac54817a8243a8e99ba6bbe5f54047 Mon Sep 17 00:00:00 2001 From: "guillaume.lambert" Date: Tue, 20 Apr 2021 17:24:01 +0200 Subject: [PATCH] Fix function test PCE 400G return code The first test return code can shifted from 200 (OK) to 201 (created) depending on the order that functional tests are run, but also with or without lighty support. JIRA: TRNSPRTPCE-442 Signed-off-by: guillaume.lambert Change-Id: I6bbc291acd0bc1a5f6bc3337fab8d7ebbe03400f (cherry picked from commit 156b223e2ff116bea5834fc376090eac0ea1e75d) --- tests/transportpce_tests/7.1/test_pce_400G.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/transportpce_tests/7.1/test_pce_400G.py b/tests/transportpce_tests/7.1/test_pce_400G.py index 10fb918af..3b19c7c15 100644 --- a/tests/transportpce_tests/7.1/test_pce_400G.py +++ b/tests/transportpce_tests/7.1/test_pce_400G.py @@ -67,7 +67,7 @@ class TransportPCE400Gtesting(unittest.TestCase): # Load port mapping def test_01_load_port_mapping(self): response = test_utils.put_jsonrequest(test_utils.URL_FULL_PORTMAPPING, self.port_mapping_data) - self.assertEqual(response.status_code, requests.codes.ok) + self.assertIn(response.status_code, (requests.codes.ok, requests.codes.created)) time.sleep(2) # Load simple bidirectional topology -- 2.36.6