diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2014-11-27 19:55:37 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2014-12-06 23:53:02 -0500 |
| commit | 66f52f4c9b7b3f43f08a163d886cd10d34bc356b (patch) | |
| tree | 351e0bef98102a26bdba0aebfdbcef8ee6e86c71 /src | |
| parent | 00c778669024f06969f7d97b1f340c5d0c4bc326 (diff) | |
| download | rust-66f52f4c9b7b3f43f08a163d886cd10d34bc356b.tar.gz rust-66f52f4c9b7b3f43f08a163d886cd10d34bc356b.zip | |
libtest: remove unnecessary `to_string()` calls
Diffstat (limited to 'src')
| -rw-r--r-- | src/libtest/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 6e202983ad8..f445e812d2c 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -1560,7 +1560,7 @@ mod tests { assert_eq!(filtered.len(), 1); assert_eq!(filtered[0].desc.name.to_string(), - "1".to_string()); + "1"); assert!(filtered[0].desc.ignore == false); } |
