Skip to content

Commit

Permalink
Use non-default port for fail_initialization_with_no_node test (#1516)
Browse files Browse the repository at this point in the history
  • Loading branch information
ascjones committed Nov 25, 2022
1 parent 10bec11 commit dc62b4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/e2e/src/tests.rs
Original file line number Diff line number Diff line change
@@ -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::<crate::PolkadotConfig, ink_env::DefaultEnvironment>::new(
"ws://0.0.0.0:9944",
"ws://0.0.0.0:9999",
)
.await;
}

0 comments on commit dc62b4f

Please sign in to comment.