aboutsummaryrefslogtreecommitdiffstats
path: root/spec/util_format_spec.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-03-17 19:43:20 +0100
committerKim Alvefur <zash@zash.se>2018-03-17 19:43:20 +0100
commitfaf91e381d85fd17de356acc3c42559417790fba (patch)
treeb7c8e4a2c4ef8d708da53b21e43dd02df3a52b9b /spec/util_format_spec.lua
parentf1f917928538979468dc4f93638da1f80038e080 (diff)
downloadprosody-faf91e381d85fd17de356acc3c42559417790fba.tar.gz
prosody-faf91e381d85fd17de356acc3c42559417790fba.zip
util.format: Fix tests to have expected value first
Diffstat (limited to 'spec/util_format_spec.lua')
-rw-r--r--spec/util_format_spec.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/util_format_spec.lua b/spec/util_format_spec.lua
index 19a8af99..b091a86d 100644
--- a/spec/util_format_spec.lua
+++ b/spec/util_format_spec.lua
@@ -3,11 +3,11 @@ local format = require "util.format".format;
describe("util.format", function()
describe("#format()", function()
it("should work", function()
- assert.equal(format("%s", "hello"), "hello");
- assert.equal(format("%s"), "<nil>");
- assert.equal(format("%s", true), "true");
- assert.equal(format("%d", true), "[true]");
- assert.equal(format("%%", true), "% [true]");
+ assert.equal("hello", format("%s", "hello"));
+ assert.equal("<nil>", format("%s"));
+ assert.equal("true", format("%s", true));
+ assert.equal("[true]", format("%d", true));
+ assert.equal("% [true]", format("%%", true));
end);
end);
end);