From 39f4f68433855e36d477c3ef3a43d3916a57fc0d Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Fri, 19 Jan 2024 14:40:08 -0600 Subject: [PATCH] make test match upstream --- src/ffi.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ffi.rs b/src/ffi.rs index d9e945f..cb79cc9 100644 --- a/src/ffi.rs +++ b/src/ffi.rs @@ -341,7 +341,7 @@ mod test { push_input_numeric_i8(ctx_ptr, a.as_ptr(), 3); let b = CString::new("b".as_bytes()).unwrap(); - push_input_numeric_i8(ctx_ptr, b.as_ptr(), 3); + push_input_numeric_i8(ctx_ptr, b.as_ptr(), 11); let mut proof_bytes_ptr: *mut Buffer = std::ptr::null_mut(); let mut inputs_bytes_ptr: *mut Buffer = std::ptr::null_mut();