From 50c370878c0f9985a8b6d1003af9e9f6282b853e Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Thu, 12 Oct 2017 15:22:47 -0400 Subject: - Renamed "%r" to "%f". --- stdlib/test/test/lux/data/text/format.lux | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'stdlib/test') diff --git a/stdlib/test/test/lux/data/text/format.lux b/stdlib/test/test/lux/data/text/format.lux index 9ffa120bb..d1f7fc9f0 100644 --- a/stdlib/test/test/lux/data/text/format.lux +++ b/stdlib/test/test/lux/data/text/format.lux @@ -12,8 +12,10 @@ ($_ seq (test "Can format common values simply." (and (&/= "true" (%b true)) + (&/= "+123" (%n +123)) (&/= "123" (%i 123)) - (&/= "123.456" (%r 123.456)) + (&/= "123.456" (%f 123.456)) + (&/= ".5" (%d .5)) (&/= "\"YOLO\"" (%t "YOLO")) (&/= "User-id: 123 -- Active: true" (format "User-id: " (%i 123) " -- Active: " (%b true))))) ))) -- cgit v1.2.3