We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab8da29 commit 01b923dCopy full SHA for 01b923d
testing/async/examples/runtime_api_tests.rs
@@ -46,7 +46,7 @@ async fn main() {
46
// General Runtime Api
47
let bytes = runtime_api.rpc_call("Metadata_metadata_versions", None, None).await.unwrap();
48
let metadata_versions = Vec::<u32>::decode(&mut bytes.0.as_slice()).unwrap();
49
- assert_eq!(metadata_versions, [14, 15]);
+ assert_eq!(metadata_versions, [14, 15, UNSTABLE_METADATA_VERSION]);
50
51
// AccountNonce
52
let alice_nonce = runtime_api.account_nonce(alice, None).await.unwrap();
0 commit comments