Changeset

10960:f84e0e2faae2

util.ringbuffer: Fix accidentally committed test change (thanks buildbot)
author Matthew Wild <mwild1@gmail.com>
date Thu, 25 Jun 2020 15:45:13 +0100
parents 10959:877ceb4feb6d
children 10961:f93dce30089a
files spec/util_ringbuffer_spec.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);