checks/tempo: use int in wait_for_open_port
This commit is contained in:
parent
eda9989f59
commit
9c0b729503
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ nixosTest {
|
||||||
};
|
};
|
||||||
testScript = ''
|
testScript = ''
|
||||||
machine.wait_for_unit("tempo.service")
|
machine.wait_for_unit("tempo.service")
|
||||||
machine.wait_for_open_port("8888")
|
machine.wait_for_open_port(8888)
|
||||||
machine.succeed("curl --fail http://127.0.0.1:8888/status/version")
|
machine.succeed("curl --fail http://127.0.0.1:8888/status/version")
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue