Skip to content

Commit c0201cf

Browse files
try unskipping test on arm
1 parent ab53974 commit c0201cf

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

test/utils.jl

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,11 @@ end
2121

2222
# Helper functions
2323
function test_compare_frames(test_frame, ref_frame, tol = 0.05)
24-
if isarm()
25-
@test_skip test_frame == ref_frame
26-
else
27-
frames_similar = true
28-
for (a, b) in zip(test_frame, ref_frame)
29-
frames_similar &= compare_colors(a, b, tol)
30-
end
31-
@test frames_similar
24+
frames_similar = true
25+
for (a, b) in zip(test_frame, ref_frame)
26+
frames_similar &= compare_colors(a, b, tol)
3227
end
28+
@test frames_similar
3329
end
3430

3531
# uses read!

0 commit comments

Comments
 (0)