Skip to content

Commit

Permalink
Update to tests to conform to format i.e. spaces at equal signs
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin-Mattheus-Moerman committed Jan 7, 2025
1 parent ebd0f28 commit 5f59e25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,11 @@ end
level = 0.5 # isolevel should produce sphere with this radius

# Process isosurface with ranged coordinate input
mc_ranged = MC(A,Int; x=x, y=y, z=z)
mc_ranged = MC(A,Int; x = x, y = y, z = z)
march(mc_ranged,level)

# Process isosurface with vector coordinate input
mc_vector = MC(A,Int; x=collect(Float64, x), y=collect(Float64, y), z=collect(Float64, z))
mc_vector = MC(A,Int; x = collect(Float64, x), y = collect(Float64, y), z = collect(Float64, z))
march(mc_vector,level)

# Test equivalence between ranged and vector input
Expand Down

0 comments on commit 5f59e25

Please sign in to comment.