diff test/Grids/equidistant_grid_test.jl @ 1255:1989d432731a refactor/grids

Implement the interfaces for iteration and indexing on EquidistantGrid. Make collect() work
author Jonatan Werpers <jonatan@werpers.com>
date Wed, 22 Feb 2023 22:38:25 +0100
parents ff8f335c32d1
children ee57bdb366e4
line wrap: on
line diff
--- a/test/Grids/equidistant_grid_test.jl	Wed Feb 22 21:58:45 2023 +0100
+++ b/test/Grids/equidistant_grid_test.jl	Wed Feb 22 22:38:25 2023 +0100
@@ -30,7 +30,7 @@
 
     @testset "collect" begin
         g = EquidistantGrid(0:0.1:0.5)
-        @test_broken collect(g) == [0.0, 0.1, 0.2, 0.3, 0.4, 0.5]
+        @test collect(g) == [0.0, 0.1, 0.2, 0.3, 0.4, 0.5]
     end
 
     @testset "getindex" begin