aboutsummaryrefslogtreecommitdiffstats
path: root/spec/util_format_spec.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-06-29 16:18:31 +0200
committerKim Alvefur <zash@zash.se>2021-06-29 16:18:31 +0200
commit6e037dc0453639c0c56c06f51ddafca051b1e925 (patch)
tree3bbcd05e8cf24bbfe0be79d37cbf07c78707b10c /spec/util_format_spec.lua
parentbfb4514d0fc0aeaacf9f5fb741d67fd36bd2774a (diff)
downloadprosody-6e037dc0453639c0c56c06f51ddafca051b1e925.tar.gz
prosody-6e037dc0453639c0c56c06f51ddafca051b1e925.zip
util.format: Change formatting of nil values to avoid looking like XML
Diffstat (limited to 'spec/util_format_spec.lua')
-rw-r--r--spec/util_format_spec.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/util_format_spec.lua b/spec/util_format_spec.lua
index a8bcfd97..d58c25aa 100644
--- a/spec/util_format_spec.lua
+++ b/spec/util_format_spec.lua
@@ -4,10 +4,10 @@ describe("util.format", function()
describe("#format()", function()
it("should work", function()
assert.equal("hello", format("%s", "hello"));
- assert.equal("<nil>", format("%s"));
- assert.equal("<nil>", format("%d"));
- assert.equal("<nil>", format("%q"));
- assert.equal(" [<nil>]", format("", nil));
+ assert.equal("(nil)", format("%s"));
+ assert.equal("(nil)", format("%d"));
+ assert.equal("(nil)", format("%q"));
+ assert.equal(" [(nil)]", format("", nil));
assert.equal("true", format("%s", true));
assert.equal("[true]", format("%d", true));
assert.equal("% [true]", format("%%", true));