util.ringbuffer: Fix accidentally committed test change (thanks buildbot)

This commit is contained in:
Matthew Wild 2020-06-25 15:45:13 +01:00
parent 6daae1f629
commit 558a365575

View file

@ -79,7 +79,7 @@ describe("util.ringbuffer", function ()
it("is equivalent to string:byte", function ()
local b = rb.new(6);
assert.truthy(b:write("foo"..string.char(0, 140).."obar"));
assert.truthy(b:write("foobar"));
b:read(3);
b:write("foo");
test_byte(b, 1);