Skip to content

Commit

Permalink
fix(corelib): Add the #[test] annotation to enumerate test (#7098)
Browse files Browse the repository at this point in the history
  • Loading branch information
hudem1 authored Jan 15, 2025
1 parent 3e611b5 commit 1ad3115
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions corelib/src/test/iter_test.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ fn test_iter_adapter_map() {
assert_eq!(iter.next(), Option::None);
}

#[test]
fn test_iterator_enumerate() {
let mut iter = array!['a', 'b', 'c'].into_iter().enumerate();

Expand Down

0 comments on commit 1ad3115

Please sign in to comment.