aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSatoshi Fujii <fujii-satoshi@jp.fujitsu.com>2021-06-30 06:30:18 +0000
committerSatoshi Fujii <fujii-satoshi@jp.fujitsu.com>2021-06-30 06:37:00 +0000
commit56f4b548ed1399b97a19ced508568b04812515e6 (patch)
tree5b00703a458fa5e62920ce22f686bd128403f166 /tests
parent050acf2b98a82ecb707b69fc6ff4bef6f84b4bd8 (diff)
Remove extraneous parentheses
Removed unnecessary parentheses from code. Signed-off-by: Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> Issue-ID: DCAEGEN2-2837 Change-Id: I9a5f43a4bd894f44d0fc27c0841535faa79a39ac
Diffstat (limited to 'tests')
-rw-r--r--tests/test_check_health.py3
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()