diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/util_strbitop_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/util_strbitop_spec.lua b/spec/util_strbitop_spec.lua index fdb21414..963c9516 100644 --- a/spec/util_strbitop_spec.lua +++ b/spec/util_strbitop_spec.lua @@ -67,7 +67,7 @@ describe("util.strbitop", function () assert(ret1 == ret2, ("parameter order should not make a difference to the result (%s, %s) = %d, reversed = %d"):format(a, b, ret1, ret2)); return ret1; end - local hex = require "util.hex"; + it("works on single bytes", function () assert.equal(0, test("00000000", "11111111")); assert.equal(1, test("10000000", "11111111")); |