From 8c56de1e698253662ec3e9efeb5e20fc88eea0e9 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 9 Oct 2019 11:45:13 +0200 Subject: Limit test sensitivity to macro pretty printing output See https://github.com/rust-lang/rust/issues/65207. --- testing/tests/rust_macro.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/tests') diff --git a/testing/tests/rust_macro.rs b/testing/tests/rust_macro.rs index b92bbeb..8d2543d 100644 --- a/testing/tests/rust_macro.rs +++ b/testing/tests/rust_macro.rs @@ -45,5 +45,5 @@ struct RustMacrosArgTemplate {} #[test] fn args() { let template = RustMacrosArgTemplate {}; - assert_eq!("0\n91\n99", template.render().unwrap()); + assert_eq!("0\n17\n25", template.render().unwrap()); } -- cgit