Skip to content

Commit 7e2bca5

Browse files
committed
Fix failing test case (unbound variable client)
1 parent c4c6368 commit 7e2bca5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def test_service_proxy_non_existing():
5353

5454

5555
def test_context_manager():
56-
with client.Client("tests/wsdl_files/soap.wsdl") as client:
57-
assert client
56+
with client.Client("tests/wsdl_files/soap.wsdl") as c:
57+
assert c
5858

5959

6060
def test_service_proxy_dir_operations():

0 commit comments

Comments
 (0)