From 3f1718e2cd405cac3a74b13fa0169860f271f51e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 5 Nov 2024 10:33:26 -0800 Subject: [PATCH] Auto-format code using Clang-Format (#240) Co-authored-by: GitHub Actions --- python/test/test_analytical.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/python/test/test_analytical.py b/python/test/test_analytical.py index f5fb7138..334bc492 100644 --- a/python/test/test_analytical.py +++ b/python/test/test_analytical.py @@ -101,7 +101,6 @@ def test_simulation(self): TestSingleGridCell(self, solver, 200.0, 5) - class TestAnalyticalStandardBackwardEuler(unittest.TestCase): def test_simulation(self): solver = musica.create_solver( @@ -355,7 +354,8 @@ def test_simulation(self): "configs/analytical", musica.micmsolver.rosenbrock, 4) - TestVectorMultipleGridCell(self, solver, 4, 200.0, 5) # The number of grid cells must equal the MICM matrix vector dimension + # The number of grid cells must equal the MICM matrix vector dimension + TestVectorMultipleGridCell(self, solver, 4, 200.0, 5) class TestAnalyticalStandardRosenbrockMultipleGridCells(unittest.TestCase): @@ -373,7 +373,8 @@ def test_simulation(self): "configs/analytical", musica.micmsolver.backward_euler, 4) - TestVectorMultipleGridCell(self, solver, 4, 10.0, places=2) # The number of grid cells must equal the MICM matrix vector dimension + # The number of grid cells must equal the MICM matrix vector dimension + TestVectorMultipleGridCell(self, solver, 4, 10.0, places=2) class TestAnalyticalStandardBackwardEulerMultipleGridCells(unittest.TestCase):