From 0b17101cb2c46e8431a8fc9ff22bdbb493fb4d4e Mon Sep 17 00:00:00 2001 From: Filip Krawczyk Date: Thu, 21 Mar 2024 12:28:44 +0100 Subject: [PATCH] Remove unused variable --- src/utils/types/tests/test_words64.cairo | 1 - 1 file changed, 1 deletion(-) diff --git a/src/utils/types/tests/test_words64.cairo b/src/utils/types/tests/test_words64.cairo index d0ee0a1..ecd7f57 100644 --- a/src/utils/types/tests/test_words64.cairo +++ b/src/utils/types/tests/test_words64.cairo @@ -19,7 +19,6 @@ fn test_slice_words64_le_multiple_words_not_full() { fn test_slice_words64_le_multiple_words_full() { let val: Words64 = array![0xabcdef1234567890, 0x7584934785943295, 0x48542576].span(); - let gas = testing::get_available_gas(); let res = val.slice_le(4, 16); assert(res.len() == 2, 'Wrong len'); assert(*res.at(0) == 0x943295abcdef1234, 'Wrong value at 0');