Skip to content

Commit dc62b4f

Browse files
authored
Use non-default port for fail_initialization_with_no_node test (#1516)
1 parent 10bec11 commit dc62b4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/e2e/src/tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#[tokio::test]
22
#[should_panic(
3-
expected = "Error establishing connection to a node at ws://0.0.0.0:9944. Make sure you run a node behind the given url!"
3+
expected = "Error establishing connection to a node at ws://0.0.0.0:9999. Make sure you run a node behind the given url!"
44
)]
55
async fn fail_initialization_with_no_node() {
66
let _ = crate::Client::<crate::PolkadotConfig, ink_env::DefaultEnvironment>::new(
7-
"ws://0.0.0.0:9944",
7+
"ws://0.0.0.0:9999",
88
)
99
.await;
1010
}

0 commit comments

Comments
 (0)