Skip to content

Commit

Permalink
Merge #1408
Browse files Browse the repository at this point in the history
1408: Uncomment tests r=charleskawczynski a=charleskawczynski

Looks like these tests were accidentally commented in 6ff2dd2

Co-authored-by: Charles Kawczynski <kawczynski.charles@gmail.com>
  • Loading branch information
bors[bot] and charleskawczynski authored Aug 3, 2023
2 parents 0223c70 + 6792524 commit 814a384
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Fields/field.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function spectral_space_2D(; n1 = 1, n2 = 1, Nij = 4)
space = Spaces.SpectralElementSpace2D(grid_topology, quad)
return space
end
#=

@testset "1×1 2D domain space" begin
Nij = 4
n1 = n2 = 1
Expand Down Expand Up @@ -422,7 +422,7 @@ end
coord = Geometry.XPoint(FT(π))
space = Spaces.PointSpace(context, coord)
@test parent(Spaces.local_geometry_data(space)) ==
FT[Geometry.component(coord, 1), 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]
FT[Geometry.component(coord, 1), 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0]
field = Fields.coordinate_field(space)
@test field isa Fields.PointField
@test Fields.field_values(field)[] == coord
Expand Down Expand Up @@ -668,7 +668,7 @@ end
C .= Ref(zero(eltype(C)))
@test all(==(0.0), parent(C))
end
=#

function integrate_bycolumn!(∫y, Y)
Fields.bycolumn(axes(Y.y)) do colidx
Operators.column_integral_definite!(∫y[colidx], Y.y[colidx])
Expand Down

0 comments on commit 814a384

Please sign in to comment.