diff options
Diffstat (limited to 'src/libstd/ascii.rs')
| -rw-r--r-- | src/libstd/ascii.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/ascii.rs b/src/libstd/ascii.rs index 55bbf4ddf75..75b31f9c354 100644 --- a/src/libstd/ascii.rs +++ b/src/libstd/ascii.rs @@ -783,6 +783,6 @@ mod tests { #[test] fn test_show() { let c = Ascii { chr: 't' as u8 }; - assert_eq!(format_strbuf!("{}", c), "t".to_string()); + assert_eq!(format!("{}", c), "t".to_string()); } } |
