From c1d3c34b6a8b2fe72a794b2aa997bc35e6a5027e Mon Sep 17 00:00:00 2001 From: Noel Chalmers Date: Sat, 23 Sep 2023 20:51:47 -0500 Subject: [PATCH] Test maxwell solver after advection --- test/test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.py b/test/test.py index 8a9617944..0ba3df9e9 100755 --- a/test/test.py +++ b/test/test.py @@ -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 @@ -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()