diff --git a/latest/_modules/compass/landice/tests/circular_shelf/decomposition_test.html b/latest/_modules/compass/landice/tests/circular_shelf/decomposition_test.html index 1f4a177b8b..1d5fb2a2c5 100644 --- a/latest/_modules/compass/landice/tests/circular_shelf/decomposition_test.html +++ b/latest/_modules/compass/landice/tests/circular_shelf/decomposition_test.html @@ -113,11 +113,11 @@

Source code for compass.landice.tests.circular_shelf.decomposition_test

-from compass.validate import compare_variables
-from compass.testcase import TestCase
+from compass.landice.tests.circular_shelf.run_model import RunModel
 from compass.landice.tests.circular_shelf.setup_mesh import SetupMesh
-from compass.landice.tests.circular_shelf.run_model import RunModel
 from compass.landice.tests.circular_shelf.visualize import Visualize
+from compass.testcase import TestCase
+from compass.validate import compare_variables
 
 
 
[docs]class DecompositionTest(TestCase): @@ -175,17 +175,17 @@

Source code for compass.landice.tests.circular_shelf.decomposition_test

compare_variables(test_case=self, variables=['normalVelocity', ], filename1='1proc_run/output.nc', filename2='4proc_run/output.nc', - l1_norm=1.0e-12, l2_norm=1.0e-14, + l1_norm=1.0e-11, l2_norm=1.0e-13, linf_norm=1.0e-15, quiet=False) compare_variables(test_case=self, variables=['uReconstructX', ], filename1='1proc_run/output.nc', filename2='4proc_run/output.nc', - l1_norm=1.0e-12, l2_norm=2.0e-14, + l1_norm=1.0e-11, l2_norm=1.0e-13, linf_norm=1.0e-15, quiet=False) compare_variables(test_case=self, variables=['uReconstructY', ], filename1='1proc_run/output.nc', filename2='4proc_run/output.nc', - l1_norm=1.0e-12, l2_norm=2.0e-14, + l1_norm=1.0e-11, l2_norm=1.0e-13, linf_norm=1.0e-15, quiet=False)