aboutsummaryrefslogtreecommitdiffstats
path: root/spec
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2020-06-28 12:26:04 +0100
committerMatthew Wild <mwild1@gmail.com>2020-06-28 12:26:04 +0100
commit8cc0b83179bde14826b91dd7e3c8ad986446923d (patch)
tree0d8e37656193187c6f4cfaa0cd5247f0f36202b8 /spec
parentfb5059547f3171087410344fcf0bffcb8f5f1433 (diff)
downloadprosody-8cc0b83179bde14826b91dd7e3c8ad986446923d.tar.gz
prosody-8cc0b83179bde14826b91dd7e3c8ad986446923d.zip
util.dbuffer: Don't use # operator in tests, Lua 5.1 doesn't support __len
Diffstat (limited to 'spec')
-rw-r--r--spec/util_dbuffer_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/util_dbuffer_spec.lua b/spec/util_dbuffer_spec.lua
index 854f3125..1a0c2992 100644
--- a/spec/util_dbuffer_spec.lua
+++ b/spec/util_dbuffer_spec.lua
@@ -26,7 +26,7 @@ describe("util.dbuffer", function ()
it("works", function ()
assert.truthy(b:write("hello world"));
assert.truthy(b:discard(6));
- assert.equal(5, #b);
+ assert.equal(5, b:length());
assert.equal("world", b:read(5));
end);
end);