Skip to content

Commit dbbbe57

Browse files
committed
fix
1 parent c139844 commit dbbbe57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_cyberchannel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_cyberchannel_uds():
7373
uds_file = Path(tempfile.gettempdir()) / "test_uds.sock"
7474
with uds_file.open("w"):
7575
pass
76-
ch = cyberchannel.create_uds_channel_fullpath(uds_fullpath=uds_file)
76+
ch = cyberchannel.create_uds_channel(uds_fullpath=uds_file)
7777
assert ch is not None
7878
assert ch._channel.target().decode() == f"unix:{uds_file}"
7979
assert not ch.close()

0 commit comments

Comments
 (0)