Skip to content

Commit b12ed2a

Browse files
committed
oopsie
1 parent 93d8556 commit b12ed2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testmodule/providers/jsonrpc/rpc_mock.nim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type MockRpcHttpServer* = ref object
1515

1616
proc new*(_: type MockRpcHttpServer): MockRpcHttpServer =
1717
let port = rand(65000..<66000)
18-
let srv = newRpcHttpServer(["127.0.0.1:" & port])
18+
let srv = newRpcHttpServer(["127.0.0.1:" & $port])
1919
let filters = initTable[string, bool]()
2020
MockRpcHttpServer(filters: filters, newFilterCounter: 0, srv: srv)
2121

0 commit comments

Comments
 (0)