Skip to content

Commit e7d026e

Browse files
committed
fix: url in test_movement_starts assertion
1 parent 3581283 commit e7d026e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

util/movement/core/src/movement.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,12 +539,12 @@ mod tests {
539539

540540
// wait for the rest api to be ready
541541
let rest_api = rest_api.wait_for(Duration::from_secs(600)).await?;
542-
assert_eq!(rest_api.listen_url(), "http://12.0.0.1:30731");
542+
assert_eq!(rest_api.listen_url(), "http://127.0.0.1:30731");
543543

544544
// wait for the faucet to be ready
545545

546546
let faucet = faucet.wait_for(Duration::from_secs(600)).await?;
547-
assert_eq!(faucet.listen_url(), "http://12.0.0.1:30732");
547+
assert_eq!(faucet.listen_url(), "http://127.0.0.1:30732");
548548

549549
// stop movement
550550
kestrel::end!(movement_task)?;

0 commit comments

Comments
 (0)