diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-11 14:18:38 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-11 14:18:38 +0100 |
commit | 93e87b0d829739ed010499b36ea69ccad4f4da25 (patch) | |
tree | 5602fd0773a93bf522bfdc2c42b2888d12b64868 /spec | |
parent | 8dda06d04a5ba7978bf35f65399a4c7d6c700e3b (diff) | |
download | prosody-93e87b0d829739ed010499b36ea69ccad4f4da25.tar.gz prosody-93e87b0d829739ed010499b36ea69ccad4f4da25.zip |
storagemanager tests: Remove debug print()
Diffstat (limited to 'spec')
-rw-r--r-- | spec/core_storagemanager_spec.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/spec/core_storagemanager_spec.lua b/spec/core_storagemanager_spec.lua index ee6e7741..3b0e0c40 100644 --- a/spec/core_storagemanager_spec.lua +++ b/spec/core_storagemanager_spec.lua @@ -315,7 +315,6 @@ describe("storagemanager", function () local data = assert(archive:find("user-issue1073", {})); local count = 0; for id, item, when in data do --luacheck: ignore 213/when - print(id) count = count + 1; assert.truthy(id); assert(st.is_stanza(item)); |