Skip to content

Commit

Permalink
do_request doesn't take 4 parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
lo-simon committed Apr 18, 2024
1 parent 4768170 commit 31aba4a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions nmostesting/suites/IS1101Test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2413,8 +2413,7 @@ def test_02_03_05_01(self, test):

valid, response = self.do_request(
"GET",
self.compat_url + "senders/" + sender_id + "/status/",
time.sleep(20),
self.compat_url + "senders/" + sender_id + "/status/"
)

if not valid:
Expand Down Expand Up @@ -2761,7 +2760,7 @@ def test_02_03_05_02(self, test):

valid, response = self.do_request(
"GET",
self.compat_url + "senders/" + sender_id + "/status/", time.sleep(20)
self.compat_url + "senders/" + sender_id + "/status/"
)
if not valid:
return test.FAIL(
Expand Down

0 comments on commit 31aba4a

Please sign in to comment.