summaryrefslogtreecommitdiff
path: root/src/parse
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse')
-rw-r--r--src/parse/tokens.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/parse/tokens.rs b/src/parse/tokens.rs
index 69c4d2de..840a68e1 100644
--- a/src/parse/tokens.rs
+++ b/src/parse/tokens.rs
@@ -683,9 +683,9 @@ mod tests {
T: Debug + PartialEq,
{
if found != expected {
- println!("source: {:?}", src);
- println!("expected: {:#?}", expected);
- println!("found: {:#?}", found);
+ println!("source: {src:?}");
+ println!("expected: {expected:#?}");
+ println!("found: {found:#?}");
panic!("test failed");
}
}