about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorJames Miller <james@aatch.net>2013-06-25 18:02:56 +1200
committerJames Miller <james@aatch.net>2013-06-25 18:02:56 +1200
commit122f25dd5e1dae124bdc8d3beeac55474d7a8ce5 (patch)
tree375bbdb7d8edd12bbf26125c2ba89914ad5af3ea /src/libstd
parent6ad31ffb53f9620f9063cb441de9c7338dfbb4de (diff)
downloadrust-122f25dd5e1dae124bdc8d3beeac55474d7a8ce5.tar.gz
rust-122f25dd5e1dae124bdc8d3beeac55474d7a8ce5.zip
Add missing import to tests
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/to_str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/to_str.rs b/src/libstd/to_str.rs
index 2e5c3c01adf..4d5bc0f8842 100644
--- a/src/libstd/to_str.rs
+++ b/src/libstd/to_str.rs
@@ -177,7 +177,7 @@ impl<A:ToStr> ToStr for @[A] {
 mod tests {
     use hashmap::HashMap;
     use hashmap::HashSet;
-    use container::Set;
+    use container::{Set,Map};
     #[test]
     fn test_simple_types() {
         assert_eq!(1i.to_str(), ~"1");