We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3581283 commit e7d026eCopy full SHA for e7d026e
util/movement/core/src/movement.rs
@@ -539,12 +539,12 @@ mod tests {
539
540
// wait for the rest api to be ready
541
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");
+ assert_eq!(rest_api.listen_url(), "http://127.0.0.1:30731");
543
544
// wait for the faucet to be ready
545
546
let faucet = faucet.wait_for(Duration::from_secs(600)).await?;
547
- assert_eq!(faucet.listen_url(), "http://12.0.0.1:30732");
+ assert_eq!(faucet.listen_url(), "http://127.0.0.1:30732");
548
549
// stop movement
550
kestrel::end!(movement_task)?;
0 commit comments