Skip to content

Commit 01b923d

Browse files
committed
fix tests
1 parent ab8da29 commit 01b923d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/async/examples/runtime_api_tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async fn main() {
4646
// General Runtime Api
4747
let bytes = runtime_api.rpc_call("Metadata_metadata_versions", None, None).await.unwrap();
4848
let metadata_versions = Vec::<u32>::decode(&mut bytes.0.as_slice()).unwrap();
49-
assert_eq!(metadata_versions, [14, 15]);
49+
assert_eq!(metadata_versions, [14, 15, UNSTABLE_METADATA_VERSION]);
5050

5151
// AccountNonce
5252
let alice_nonce = runtime_api.account_nonce(alice, None).await.unwrap();

0 commit comments

Comments
 (0)