diff options
author | Matthew Wild <mwild1@gmail.com> | 2022-12-02 20:27:32 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2022-12-02 20:27:32 +0000 |
commit | d33904f7e96bbc4d1ea4e5dec544bad82d2be15f (patch) | |
tree | 9165698769248fd830844d6eabcfd8f5771158a1 /spec | |
parent | 76bf6d511f851c7cde8a81257afaaae0fb7a4160 (diff) | |
download | prosody-d33904f7e96bbc4d1ea4e5dec544bad82d2be15f.tar.gz prosody-d33904f7e96bbc4d1ea4e5dec544bad82d2be15f.zip |
util.hashring: tests: don't randomize order - they are written in a sequential style
Diffstat (limited to 'spec')
-rw-r--r-- | spec/util_hashring_spec.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/spec/util_hashring_spec.lua b/spec/util_hashring_spec.lua index d8801774..05f053e4 100644 --- a/spec/util_hashring_spec.lua +++ b/spec/util_hashring_spec.lua @@ -1,6 +1,7 @@ local hashring = require "util.hashring"; describe("util.hashring", function () + randomize(false); local sha256 = require "util.hashes".sha256; |