# HG changeset patch # User Matthew Wild # Date 1593096313 -3600 # Node ID f84e0e2faae256831b7cd3da1790541bcc7a678c # Parent 877ceb4feb6d340b198344f64546cdd3977f7989 util.ringbuffer: Fix accidentally committed test change (thanks buildbot) diff -r 877ceb4feb6d -r f84e0e2faae2 spec/util_ringbuffer_spec.lua --- a/spec/util_ringbuffer_spec.lua Thu Jun 25 15:34:29 2020 +0100 +++ b/spec/util_ringbuffer_spec.lua Thu Jun 25 15:45:13 2020 +0100 @@ -79,7 +79,7 @@ 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);