We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fail_initialization_with_no_node
1 parent 10bec11 commit dc62b4fCopy full SHA for dc62b4f
crates/e2e/src/tests.rs
@@ -1,10 +1,10 @@
1
#[tokio::test]
2
#[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!"
+ expected = "Error establishing connection to a node at ws://0.0.0.0:9999. Make sure you run a node behind the given url!"
4
)]
5
async fn fail_initialization_with_no_node() {
6
let _ = crate::Client::<crate::PolkadotConfig, ink_env::DefaultEnvironment>::new(
7
- "ws://0.0.0.0:9944",
+ "ws://0.0.0.0:9999",
8
)
9
.await;
10
}
0 commit comments