about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-07-14 11:40:14 -0700
committerGitHub <noreply@github.com>2016-07-14 11:40:14 -0700
commit78d49bfac2bbcd48de522199212a1209f498e834 (patch)
tree74f709793b6076fae8bc3186a365d9d63f19c4d9 /src/test
parentfe5c439f695fd72b7be0d0f28ee8397b3256630c (diff)
parentb2d1f7ebaecbb7ea886e2cbd680780c625a459ef (diff)
downloadrust-78d49bfac2bbcd48de522199212a1209f498e834.tar.gz
rust-78d49bfac2bbcd48de522199212a1209f498e834.zip
Auto merge of #34824 - alexcrichton:fix-nightlies, r=brson
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
Diffstat (limited to 'src/test')
-rw-r--r--src/test/compile-fail/trace_macros-gate.rs3
1 files changed, 1 insertions, 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);
 }