We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab53974 commit c0201cfCopy full SHA for c0201cf
test/utils.jl
@@ -21,15 +21,11 @@ end
21
22
# Helper functions
23
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
+ frames_similar = true
+ for (a, b) in zip(test_frame, ref_frame)
+ frames_similar &= compare_colors(a, b, tol)
32
end
+ @test frames_similar
33
34
35
# uses read!
0 commit comments