Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
fmkra committed Mar 21, 2024
1 parent 89b5a39 commit 0b17101
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/utils/types/tests/test_words64.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 0b17101

Please sign in to comment.