Skip to content

Commit

Permalink
Test maxwell solver after advection
Browse files Browse the repository at this point in the history
  • Loading branch information
noelchalmers committed Sep 24, 2023
1 parent 4f800eb commit c1d3c34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ def test(name, cmd, settings, referenceNorm, ranks=1):
return failed

if __name__ == "__main__":
import testMaxwell
import testMesh
import testGradient
import testAdvection
import testMaxwell
import testAcoustics
import testElliptic
import testFokkerPlanck
Expand All @@ -181,11 +181,11 @@ def test(name, cmd, settings, referenceNorm, ranks=1):
import testInitialGuess

failCount=0;
failCount+=testMaxwell.main()
failCount+=testMesh.main()
failCount+=testParAdogs.main()
failCount+=testGradient.main()
failCount+=testAdvection.main()
failCount+=testMaxwell.main()
failCount+=testAcoustics.main()
failCount+=testElliptic.main()
failCount+=testFokkerPlanck.main()
Expand Down

0 comments on commit c1d3c34

Please sign in to comment.