summary refs log tree commit diff stats
path: root/tests/stdlib/tstrformat.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2018-01-14 23:49:53 +0100
committerAraq <rumpf_a@web.de>2018-01-14 23:49:53 +0100
commit9a60eae631e9f778d3920f3a66de0e726e687eef (patch)
treee0067a6a66dbaec4f667966748803bd119657277 /tests/stdlib/tstrformat.nim
parentbba6d624205fbfe695b146fb63c00a2854199ee8 (diff)
downloadNim-9a60eae631e9f778d3920f3a66de0e726e687eef.tar.gz
fixes #7078
Diffstat (limited to 'tests/stdlib/tstrformat.nim')
-rw-r--r--tests/stdlib/tstrformat.nim4
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