Skip to content

Commit 67e970d

Browse files
committed
fix stray quote in test harness
1 parent 73287b9 commit 67e970d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/snapshots/integration__integration__show_instr_offsets__no_diffswitch_with_instr_offsets.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
source: tests/integration/show_instr_offsets.rs
33
expression: decompiled
44
---
5-
#pragma mapfile "Xx_mapfile-1_xX""
5+
#pragma mapfile "Xx_mapfile-1_xX"
66

77
script timeline0 {
88
/* (0x7c) 0x0 */ }

tests/integration_impl/source_test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,7 @@ fn make_decompiled_text_deterministic(text: &str) -> String {
451451
regex::RegexBuilder::new(r#"^(#pragma +(?:\w+ +)+)".+(Xx_.+_xX)"#).multi_line(true).build().unwrap()
452452
};
453453
}
454-
TEMP_FILENAME_RE.replace_all(text, r#"$1"$2""#).into()
454+
TEMP_FILENAME_RE.replace_all(text, r#"$1"$2"#).into()
455455
}
456456

457457
struct SourceBuilder {

0 commit comments

Comments
 (0)