diff --git a/crates/e2e/src/tests.rs b/crates/e2e/src/tests.rs index 26ecba98456..2966b2df976 100644 --- a/crates/e2e/src/tests.rs +++ b/crates/e2e/src/tests.rs @@ -1,10 +1,10 @@ #[tokio::test] #[should_panic( - expected = "Error establishing connection to a node at ws://0.0.0.0:9944. Make sure you run a node behind the given url!" + expected = "Error establishing connection to a node at ws://0.0.0.0:9999. Make sure you run a node behind the given url!" )] async fn fail_initialization_with_no_node() { let _ = crate::Client::::new( - "ws://0.0.0.0:9944", + "ws://0.0.0.0:9999", ) .await; }