From 939f1933c8635a18de428c696c97cc5d8600abff Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Mon, 17 Jul 2023 13:30:55 +0000 Subject: Add pylama into checks Checks code with pylama Issue-ID: INT-2222 Signed-off-by: Michal Jagiello Change-Id: If275ef90f21e3049abe72bcf373473b40846005c --- src/onaptests/steps/simulator/cds_mockserver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/onaptests/steps/simulator/cds_mockserver.py') diff --git a/src/onaptests/steps/simulator/cds_mockserver.py b/src/onaptests/steps/simulator/cds_mockserver.py index 6933fa0..9fc4162 100644 --- a/src/onaptests/steps/simulator/cds_mockserver.py +++ b/src/onaptests/steps/simulator/cds_mockserver.py @@ -47,11 +47,11 @@ class CdsMockserverCnfConfigureStep(BaseStep): response = requests.put( "http://portal.api.simpledemo.onap.org:30726/mockserver/expectation", json={ - "httpRequest" : { + "httpRequest": { "method": expectation["method"], "path": expectation["path"] }, - "httpResponse" : { + "httpResponse": { "body": expectation["response"] } } -- cgit 1.2.3-korg