Skip to content

Commit

Permalink
Reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
efaulhaber committed Nov 14, 2023
1 parent c514eb1 commit a1e4662
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions test/test_unit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1344,13 +1344,14 @@ end
@test @isdefined x
@test x == 4

@test_warn "You just called" trixi_include(@__MODULE__, filename, x=7)
@test_warn "You just called" trixi_include(@__MODULE__, filename, x = 7)
@test x == 7

@test_throws "assignment `y` not found in expression" trixi_include(@__MODULE__,
filename, y=3)
filename,
y = 3)
finally
rm(filename, force=true)
rm(filename, force = true)
end
end

Expand All @@ -1373,9 +1374,9 @@ end

@test_throws "no method matching solve(; maxiters::Int64)" trixi_include(@__MODULE__,
filename,
maxiters=3)
maxiters = 3)
finally
rm(filename, force=true)
rm(filename, force = true)
end
end

Expand Down Expand Up @@ -1407,11 +1408,12 @@ end
@test @isdefined x
@test x == 10^5

@test_warn "You just called" trixi_include(@__MODULE__, filename2, maxiters=7)
@test_warn "You just called" trixi_include(@__MODULE__, filename2,
maxiters = 7)
@test x == 7
finally
rm(filename1, force=true)
rm(filename2, force=true)
rm(filename1, force = true)
rm(filename2, force = true)
end
end
end
Expand Down

0 comments on commit a1e4662

Please sign in to comment.