summary refs log tree commit diff stats
path: root/tests/stdlib/tstrformat.nim
diff options
context:
space:
mode:
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