From d87c5d19a3be4c94c1966d583608383500a5e222 Mon Sep 17 00:00:00 2001 From: Filip Haltmayer Date: Mon, 22 May 2023 17:49:24 -0700 Subject: [PATCH] lint Signed-off-by: Filip Haltmayer --- tests/test_connections.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_connections.py b/tests/test_connections.py index f37c1b4f5..aa7a0d4e9 100644 --- a/tests/test_connections.py +++ b/tests/test_connections.py @@ -190,7 +190,7 @@ def test_add_connection_then_connect(self, uri): with mock.patch(f"{mock_prefix}.close", return_value=None): connections.remove_connection(alias) - + def test_connect_with_reuse_grpc(self): alias = "default" default_addr = {"address": "localhost:19530", "user": ""} @@ -211,7 +211,6 @@ def test_connect_with_reuse_grpc(self): with mock.patch(f"{mock_prefix}.close", return_value=None): connections.disconnect(alias) - assert list(connections._connection_references.values())[0] == 1 with mock.patch(f"{mock_prefix}.close", return_value=None):