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

remotes/origin/master
Matthew Wild 6 years ago
parent 6daae1f629
commit 558a365575
  1. 2
      spec/util_ringbuffer_spec.lua

@ -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);

Loading…
Cancel
Save