File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed
branches/try2/src/libcore Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
- refs/heads/try2: fd5a3520d5fbb009b2a5de8cf5ed164f28418cb1
8
+ refs/heads/try2: 3c1e78788423f6036d370c4ea37718f3494868e7
9
9
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -175,15 +175,17 @@ mod tests {
175
175
~" [ [ ] , [ 1 ] , [ 1 , 1 ] ] ");
176
176
}
177
177
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);
182
185
183
- // table.insert(3, 4);
184
- // table.insert(1, 2);
186
+ let table_str = table.to_str();
185
187
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
+ }
189
191
}
You can’t perform that action at this time.
0 commit comments