about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2013-07-10 13:14:31 -0400
committerCorey Richardson <corey@octayn.net>2013-07-10 13:14:31 -0400
commit26f0a55f76e2b40c5308a86bb774b1b541b5d6fe (patch)
tree267a40c253d3052a264ce11f584666b1dffd775b
parent8dc6445e38e163ff0c195f0ee11f7b1532f563dc (diff)
downloadrust-26f0a55f76e2b40c5308a86bb774b1b541b5d6fe.tar.gz
rust-26f0a55f76e2b40c5308a86bb774b1b541b5d6fe.zip
fix test
-rw-r--r--src/test/run-fail/assert-eq-macro-fail.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-fail/assert-eq-macro-fail.rs b/src/test/run-fail/assert-eq-macro-fail.rs
index facfb89409c..a31bd25a6f1 100644
--- a/src/test/run-fail/assert-eq-macro-fail.rs
+++ b/src/test/run-fail/assert-eq-macro-fail.rs
@@ -1,4 +1,4 @@
-// error-pattern:left: 14 does not equal right: 15
+// error-pattern:assertion failed: `(left == right) && (right == left)` (left: `14`, right: `15`)
 
 #[deriving(Eq)]
 struct Point { x : int }