about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-05-19 05:22:31 -0700
committerbors <bors@rust-lang.org>2013-05-19 05:22:31 -0700
commit5cbdc53f89a95f410140c10c3ef80c2685772186 (patch)
tree9f10c27962dbb7c844bc3abb7e20119d75f02aa6 /src/libsyntax/parse
parent3acf37897a4ca7f019ed8894ec3878801377773d (diff)
parentcc57ca012a1f49875e19b1b089c91928dc339979 (diff)
downloadrust-5cbdc53f89a95f410140c10c3ef80c2685772186.tar.gz
rust-5cbdc53f89a95f410140c10c3ef80c2685772186.zip
auto merge of #6601 : cmr/rust/assert_eq, r=Aatch
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs
index 9a8a6620652..fa52f3dde3d 100644
--- a/src/libsyntax/parse/mod.rs
+++ b/src/libsyntax/parse/mod.rs
@@ -381,7 +381,7 @@ mod test {
         i.intern("c");
         i.intern("d");
         i.intern("return");
-        assert!(i.get(ast::ident{repr:101,ctxt:0}) == @~"b");
+        assert_eq!(i.get(ast::ident{repr:101,ctxt:0}), @~"b");
         i
     }