diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-25 10:29:23 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-02-25 10:29:23 +0530 |
| commit | c950ee93c95d9cfe68ed431bdc45cea67a554757 (patch) | |
| tree | d2a3f8150b83d55a5935c312ff5eaecf9278f599 /src/test | |
| parent | 1c97ac3d12074568269d34018ca254ae44fe40b9 (diff) | |
| parent | 870ad3bc75ef25a01b81ff115ab307d21c738a0f (diff) | |
| download | rust-c950ee93c95d9cfe68ed431bdc45cea67a554757.tar.gz rust-c950ee93c95d9cfe68ed431bdc45cea67a554757.zip | |
Rollup merge of #22157 - tbu-:pr_debug_collections, r=alexcrichton
r? @Gankro
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-pass/issue-3559.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/issue-3559.rs b/src/test/run-pass/issue-3559.rs index 754412ea949..3f1a1c75d8a 100644 --- a/src/test/run-pass/issue-3559.rs +++ b/src/test/run-pass/issue-3559.rs @@ -24,6 +24,6 @@ pub fn main() { let mut table = HashMap::new(); table.insert("one".to_string(), 1); table.insert("two".to_string(), 2); - assert!(check_strs(&format!("{:?}", table), "HashMap {\"one\": 1, \"two\": 2}") || - check_strs(&format!("{:?}", table), "HashMap {\"two\": 2, \"one\": 1}")); + assert!(check_strs(&format!("{:?}", table), "{\"one\": 1, \"two\": 2}") || + check_strs(&format!("{:?}", table), "{\"two\": 2, \"one\": 1}")); } |
