Skip to content

Commit b923c74

Browse files
committed
Fix port argument in test_live_server_fixed_port
1 parent f297a68 commit b923c74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_live_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,6 @@ def test_live_server_fixed_port(self, port, appdir):
130130
def test_port(live_server):
131131
assert live_server.port == %d
132132
''' % port)
133-
result = appdir.runpytest('-v', '--live-server-port', port)
133+
result = appdir.runpytest('-v', '--live-server-port', str(port))
134134
result.stdout.fnmatch_lines(['*PASSED*'])
135135
assert result.ret == 0

0 commit comments

Comments
 (0)