Diff

spec/util_format_spec.lua @ 10034:4fca92d60040

util.format: Handle formats expecting an integer in Lua 5.3+ (fixes #1371)
author Kim Alvefur <zash@zash.se>
date Thu, 30 May 2019 13:41:05 +0200
parent 9693:6ed0d6224d64
child 10035:386f085820e6
line wrap: on
line diff
--- a/spec/util_format_spec.lua	Tue May 28 00:56:30 2019 +0200
+++ b/spec/util_format_spec.lua	Thu May 30 13:41:05 2019 +0200
@@ -12,6 +12,7 @@
 			assert.equal("[true]", format("%d", true));
 			assert.equal("% [true]", format("%%", true));
 			assert.equal("{ }", format("%q", { }));
+			assert.equal("[1.5]", format("%d", 1.5));
 		end);
 	end);
 end);