Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch committed Oct 24, 2023
1 parent 15d76b9 commit cbe7027
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ fn muxed_account_med_25519_to_string() {
0x05, 0x51, 0x1c, 0x83, 0x8a, 0xad, 0x97, 0x34, 0xa4, 0xa2, 0xfb, 0x0d, 0x7a, 0x03,
0xfc, 0x7f, 0xe8, 0x9a,
]),
id: 9223372036854775808,
id: 9_223_372_036_854_775_808,
}
.to_string();
assert_eq!(
Expand All @@ -77,7 +77,7 @@ fn muxed_account_med_25519_from_str() {
0x05, 0x51, 0x1c, 0x83, 0x8a, 0xad, 0x97, 0x34, 0xa4, 0xa2, 0xfb, 0x0d, 0x7a, 0x03,
0xfc, 0x7f, 0xe8, 0x9a,
]),
id: 9223372036854775808,
id: 9_223_372_036_854_775_808,
}),
);
}
Expand Down Expand Up @@ -117,7 +117,7 @@ fn muxed_account_to_string_with_muxed_ed25519() {
0x05, 0x51, 0x1c, 0x83, 0x8a, 0xad, 0x97, 0x34, 0xa4, 0xa2, 0xfb, 0x0d, 0x7a, 0x03,
0xfc, 0x7f, 0xe8, 0x9a,
]),
id: 9223372036854775808,
id: 9_223_372_036_854_775_808,
})
.to_string();
assert_eq!(
Expand All @@ -139,7 +139,7 @@ fn muxed_account_from_str_with_muxed_ed25519() {
0x05, 0x51, 0x1c, 0x83, 0x8a, 0xad, 0x97, 0x34, 0xa4, 0xa2, 0xfb, 0x0d, 0x7a, 0x03,
0xfc, 0x7f, 0xe8, 0x9a,
]),
id: 9223372036854775808,
id: 9_223_372_036_854_775_808,
})),
);
}
Expand Down

0 comments on commit cbe7027

Please sign in to comment.