Skip to content

Commit 558a365

Browse files
committed
util.ringbuffer: Fix accidentally committed test change (thanks buildbot)
1 parent 6daae1f commit 558a365

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/util_ringbuffer_spec.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ describe("util.ringbuffer", function ()
7979

8080
it("is equivalent to string:byte", function ()
8181
local b = rb.new(6);
82-
assert.truthy(b:write("foo"..string.char(0, 140).."obar"));
82+
assert.truthy(b:write("foobar"));
8383
b:read(3);
8484
b:write("foo");
8585
test_byte(b, 1);

0 commit comments

Comments
 (0)