From 56f4b548ed1399b97a19ced508568b04812515e6 Mon Sep 17 00:00:00 2001 From: Satoshi Fujii Date: Wed, 30 Jun 2021 06:30:18 +0000 Subject: Remove extraneous parentheses Removed unnecessary parentheses from code. Signed-off-by: Satoshi Fujii Issue-ID: DCAEGEN2-2837 Change-Id: I9a5f43a4bd894f44d0fc27c0841535faa79a39ac --- tests/test_check_health.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') 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() -- cgit 1.2.3-korg