There was an error while loading. Please reload this page.
1 parent 16132f9 commit e685ff9Copy full SHA for e685ff9
1 file changed
apps/predbat/tests/test_octopus_free.py
@@ -81,8 +81,8 @@ def test_octopus_free(my_predbat):
81
if mock_get.call_count != 1:
82
print("FAIL: Expected 1 HTTP call when covering free-session timeout, got {}".format(mock_get.call_count))
83
failed = True
84
- elif mock_get.call_args.kwargs.get("timeout") != 30:
85
- print("FAIL: Expected Octopus free-session timeout 30, got {}".format(mock_get.call_args.kwargs.get("timeout")))
+ elif mock_get.call_args.kwargs.get("timeout") != 120:
+ print("FAIL: Expected Octopus free-session timeout 120, got {}".format(mock_get.call_args.kwargs.get("timeout")))
86
87
elif body != _JSON_BODY:
88
print("FAIL: Expected Octopus free-session body to round-trip unchanged")
0 commit comments