diff options
Diffstat (limited to 'tests/test_check_health.py')
-rw-r--r-- | tests/test_check_health.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_check_health.py b/tests/test_check_health.py index a159212..d3088f9 100644 --- a/tests/test_check_health.py +++ b/tests/test_check_health.py @@ -1,6 +1,7 @@ # ============LICENSE_START======================================================= # Copyright (c) 2017-2020 AT&T Intellectual Property. All rights reserved. # Copyright (c) 2019 Pantheon.tech. All rights reserved. +# Copyright 2021 Fujitsu Ltd. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -23,7 +24,7 @@ import io class MockSocket(object): def getsockname(self): - return ('sockname',) + return 'sockname', class MockRequest(object): _sock = MockSocket() |