Skip to content

Commit fb88db1

Browse files
committed
Some renaming.
1 parent 9f2f3bd commit fb88db1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_holdup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,15 @@ def test_http_insecure_with_proto(testdir):
9191
assert result.ret == 0
9292

9393

94-
def test_any(testdir, tmp_path_factory, extra):
94+
def test_any1(testdir, tmp_path_factory, extra):
9595
tcp = socket.socket()
9696
tcp.bind(("127.0.0.1", 0))
9797
_, port = tcp.getsockname()
9898

9999
uds = socket.socket(socket.AF_UNIX)
100100

101101
tmp_path = tmp_path_factory.getbasetemp()
102-
unix_path = tmp_path / "sock"
102+
unix_path = tmp_path / "s"
103103
path_path = tmp_path / "miss"
104104
uds.bind(str(unix_path))
105105
uds.listen(1)
@@ -129,7 +129,7 @@ def test_any2(testdir, tmp_path, extra):
129129
_, port = tcp.getsockname()
130130

131131
uds = socket.socket(socket.AF_UNIX)
132-
unix_path = tmp_path / "sock"
132+
unix_path = tmp_path / "s"
133133
path_path = tmp_path / "miss"
134134
uds.bind(str(unix_path))
135135
uds.listen(1)

0 commit comments

Comments
 (0)