summaryrefslogtreecommitdiff
path: root/rust/tests
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-05-08 21:50:23 -0400
committerMason Reed <35282038+emesare@users.noreply.github.com>2025-05-12 17:45:24 -0400
commit6617b0afa09f549d0a5c9c53063f3ad8ab82b7e4 (patch)
treec5b6dc0ba8d257b77c4e62611ec64a6d2377a94b /rust/tests
parentadbd39ab7c3d4e67e8709af43176e60f31141ba8 (diff)
[Rust] Fix misc typos
Diffstat (limited to 'rust/tests')
-rw-r--r--rust/tests/language_representation.rs54
1 files changed, 27 insertions, 27 deletions
diff --git a/rust/tests/language_representation.rs b/rust/tests/language_representation.rs
index 5c034c2f..c3d60966 100644
--- a/rust/tests/language_representation.rs
+++ b/rust/tests/language_representation.rs
@@ -91,7 +91,7 @@ impl LanguageRepresentationFunction for MyLangRepr {
Unimpl | Unreachable | Undef => panic!(),
_kind => {
tokens.append(InstructionTextToken::new(
- format!("other instr {:x}\n", instr.address),
+ format!("other instr 0x{:x}\n", instr.address),
InstructionTextTokenKind::Text,
));
}
@@ -155,32 +155,32 @@ fn test_custom_language_representation() {
assert_eq!(
format!("{output}"),
"block 26
-other instr 36775
-other instr 3679e
-other instr 3679e
-other instr 367ba
-other instr 367e6
-other instr 3682f
-other instr 3682f
-other instr 36834
-other instr 3683e
-other instr 3684e
-other instr 36867
-other instr 36881
-other instr 36881
-other instr 36881
-other instr 36896
-other instr 368a0
-other instr 368bb
-other instr 368d2
-other instr 3694a
-other instr 36960
-other instr 369e1
-other instr 369ec
-other instr 36a2e
-other instr 36ab5
-other instr 36abd
-other instr 36ac2
+other instr 0x36775
+other instr 0x3679e
+other instr 0x3679e
+other instr 0x367ba
+other instr 0x367e6
+other instr 0x3682f
+other instr 0x3682f
+other instr 0x36834
+other instr 0x3683e
+other instr 0x3684e
+other instr 0x36867
+other instr 0x36881
+other instr 0x36881
+other instr 0x36881
+other instr 0x36896
+other instr 0x368a0
+other instr 0x368bb
+other instr 0x368d2
+other instr 0x3694a
+other instr 0x36960
+other instr 0x369e1
+other instr 0x369ec
+other instr 0x36a2e
+other instr 0x36ab5
+other instr 0x36abd
+other instr 0x36ac2
"
);
}