diff options
author | Araq <rumpf_a@web.de> | 2018-01-14 23:49:53 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-01-14 23:49:53 +0100 |
commit | 9a60eae631e9f778d3920f3a66de0e726e687eef (patch) | |
tree | e0067a6a66dbaec4f667966748803bd119657277 /tests/stdlib/tstrformat.nim | |
parent | bba6d624205fbfe695b146fb63c00a2854199ee8 (diff) | |
download | Nim-9a60eae631e9f778d3920f3a66de0e726e687eef.tar.gz |
fixes #7078
Diffstat (limited to 'tests/stdlib/tstrformat.nim')
-rw-r--r-- | tests/stdlib/tstrformat.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/stdlib/tstrformat.nim b/tests/stdlib/tstrformat.nim index 0c56a27f9..4e5c614a7 100644 --- a/tests/stdlib/tstrformat.nim +++ b/tests/stdlib/tstrformat.nim @@ -9,5 +9,5 @@ type Obj = object proc `$`(o: Obj): string = "foobar" var o: Obj -doAssert %"{o}" == "foobar" -doAssert %"{o:10}" == "foobar " \ No newline at end of file +doAssert fmt"{o}" == "foobar" +doAssert fmt"{o:10}" == "foobar " \ No newline at end of file |