diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-07 00:20:54 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-07 00:20:54 +0100 |
commit | 39310388b98043fdf6795c126ef1c225c92d32f3 (patch) | |
tree | 24af2d74f7b65cd1f6a6e61292632a464c4d9ad6 /spec | |
parent | 028bf41728f26ba7c969395556a6a04c05f5889d (diff) | |
download | prosody-39310388b98043fdf6795c126ef1c225c92d32f3.tar.gz prosody-39310388b98043fdf6795c126ef1c225c92d32f3.zip |
util.array: Fix typo in test
Diffstat (limited to 'spec')
-rw-r--r-- | spec/util_array_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/util_array_spec.lua b/spec/util_array_spec.lua index acd2e882..04d0cc28 100644 --- a/spec/util_array_spec.lua +++ b/spec/util_array_spec.lua @@ -1,7 +1,7 @@ local array = require "util.array"; describe("util.array", function () describe("creation", function () - describe("from tablle", function () + describe("from table", function () it("works", function () local a = array({"a", "b", "c"}); assert.same({"a", "b", "c"}, a); |