From 6dcc665f489567cd202934af7a4d34ee372d0b79 Mon Sep 17 00:00:00 2001 From: Tim Andrews Date: Tue, 3 Sep 2024 14:08:33 +0100 Subject: [PATCH] remove negative sign left from debugging --- integration-tests/equations/test_boussinesq.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/equations/test_boussinesq.py b/integration-tests/equations/test_boussinesq.py index b1d0dc07..f2cea317 100644 --- a/integration-tests/equations/test_boussinesq.py +++ b/integration-tests/equations/test_boussinesq.py @@ -131,5 +131,5 @@ def test_boussinesq(tmpdir, compressible): test_type = 'compressible' if compressible else 'incompressible' # Slack values chosen to be robust to different platforms - assert error < -1e-10, f'Values for {variable} in ' + \ + assert error < 1e-10, f'Values for {variable} in ' + \ f'{test_type} test do not match KGO values'