Skip to content

Commit be3c59d

Browse files
committed
---
yaml --- r: 140728 b: refs/heads/try2 c: 3c1e787 h: refs/heads/master v: v3
1 parent 71e6a24 commit be3c59d

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: fd5a3520d5fbb009b2a5de8cf5ed164f28418cb1
8+
refs/heads/try2: 3c1e78788423f6036d370c4ea37718f3494868e7
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libcore/to_str.rs

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -175,15 +175,17 @@ mod tests {
175175
~"[[], [1], [1, 1]]");
176176
}
177177
178-
// #[test]
179-
// fn test_hashmap() {
180-
// let mut table: HashMap<int, int> = HashMap::new();
181-
// let mut empty: HashMap<int, int> = HashMap::new();
178+
#[test]
179+
fn test_hashmap() {
180+
let mut table: HashMap<int, int> = HashMap::new();
181+
let empty: HashMap<int, int> = HashMap::new();
182+
183+
table.insert(3, 4);
184+
table.insert(1, 2);
182185
183-
// table.insert(3, 4);
184-
// table.insert(1, 2);
186+
let table_str = table.to_str();
185187
186-
// assert!(table.to_str() == ~"{1 : 2, 3 : 4}");
187-
// assert!(empty.to_str() == ~"{}");
188-
//}
188+
assert!(table_str == ~"{1 : 2, 3 : 4}" || table_str == ~"{3 : 4, 1 : 2}");
189+
assert!(empty.to_str() == ~"{}");
190+
}
189191
}

0 commit comments

Comments
 (0)