From ea6523b772af87e66c860a4c0a846e002c12135f Mon Sep 17 00:00:00 2001 From: npty Date: Wed, 11 Sep 2024 12:28:03 +0700 Subject: [PATCH] chore: avoid abort code in test --- move/utils/sources/utils/utils.move | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/move/utils/sources/utils/utils.move b/move/utils/sources/utils/utils.move index 8761e876..7f496113 100644 --- a/move/utils/sources/utils/utils.move +++ b/move/utils/sources/utils/utils.move @@ -38,7 +38,7 @@ fun peel_bcs_data_succeeds() { data, |bcs| bcs::peel_vec_u8(bcs), ); - assert!(peeled_data == test_bytes, 0); + assert!(peeled_data == test_bytes); } #[test]