Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jlchan committed Nov 10, 2023
1 parent 2f9f769 commit 67836d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_parabolic_2d.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ isdir(outdir) && rm(outdir, recursive = true)
dg = DGMulti(polydeg = 2, element_type = Quad(), approximation_type = Polynomial(),
surface_integral = SurfaceIntegralWeakForm(flux_central),
volume_integral = VolumeIntegralWeakForm())
cells_per_dimension = (2, 2)
cells_per_dimension = (2, 2)
mesh = DGMultiMesh(dg, cells_per_dimension)

# test with polynomial initial condition x^2 * y
Expand Down
2 changes: 1 addition & 1 deletion test/test_unit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,7 @@ end
dg = DGMulti(polydeg = 1, element_type = Line(), approximation_type = Polynomial(),
surface_integral = SurfaceIntegralWeakForm(flux_central),
volume_integral = VolumeIntegralFluxDifferencing(flux_central))
cells_per_dimension = (1,)
cells_per_dimension = (1,)
mesh = DGMultiMesh(dg, cells_per_dimension, periodicity = false)

@test mesh.boundary_faces[:entire_boundary] == [1, 2]
Expand Down

0 comments on commit 67836d9

Please sign in to comment.