fix typo in test

This commit is contained in:
Robin Wellner 2016-02-16 02:17:48 +01:00
parent 5eec3575ab
commit 93de15580f

View File

@ -189,6 +189,6 @@ describe("bitser", function()
end)
it("can load from raw data", function()
local ffi = require 'ffi'
assert.are.same(bitser.loadData(ffi.new("uint8[4]", 195, 103, 118, 120)), "gvx")
assert.are.same(bitser.loadData(ffi.new("uint8_t[4]", 195, 103, 118, 120)), "gvx")
end)
end)