From 3b0dda77f2c9e71596222d1a92baa50621746589 Mon Sep 17 00:00:00 2001 From: Dmitry Vagner Date: Wed, 21 Sep 2022 12:54:19 -0700 Subject: [PATCH] fix test --- evm/src/cpu/kernel/tests/ripemd.rs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/evm/src/cpu/kernel/tests/ripemd.rs b/evm/src/cpu/kernel/tests/ripemd.rs index 4bff5a40..152547b3 100644 --- a/evm/src/cpu/kernel/tests/ripemd.rs +++ b/evm/src/cpu/kernel/tests/ripemd.rs @@ -17,13 +17,13 @@ fn test_ripemd() -> Result<()> { let ripemd = kernel.global_labels["ripemd_alt"]; let input: Vec = vec![ - 0x61, 0x62, 0x63, 0x64, - 0x65, 0x66, 0x67, 0x68, - 0x69, 0x6a, 0x6b, 0x6c, - 0x6d, 0x6e, 0x6f, 0x70, - 0x71, 0x72, 0x73, 0x74, - 0x75, 0x76, 0x77, 0x78, - 0x79, 0x7a + 26 , 0x61, 0x62, + 0x63, 0x64, 0x65, 0x66, + 0x67, 0x68, 0x69, 0x6a, + 0x6b, 0x6c, 0x6d, 0x6e, + 0x6f, 0x70, 0x71, 0x72, + 0x73, 0x74, 0x75, 0x76, + 0x77, 0x78, 0x79, 0x7a ]; let initial_stack = input.iter().map(|&x| U256::from(x as u32)).collect();