From b2d1f7ebaecbb7ea886e2cbd680780c625a459ef Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 14 Jul 2016 10:27:56 -0700 Subject: [PATCH] test: Remove NOTE assertions from trace_macros-gate If no NOTE assertions are present I believe they aren't asserted at all, and it looks like the number of NOTEs differs on distcheck vs `make check`, so let's just remove them all. Closes #18154 --- src/test/compile-fail/trace_macros-gate.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/test/compile-fail/trace_macros-gate.rs b/src/test/compile-fail/trace_macros-gate.rs index e9b7ddf6d1c..d4a7c4ed0e0 100644 --- a/src/test/compile-fail/trace_macros-gate.rs +++ b/src/test/compile-fail/trace_macros-gate.rs @@ -26,6 +26,5 @@ fn main() { ($x: ident) => { trace_macros!($x) } //~ ERROR `trace_macros` is not stable } - expando!(true); //~ NOTE in this expansion - //~^ NOTE in this expansion + expando!(true); }