From 570a83bbf81bb3d239ad7a23ff307b66def1911f Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 14 May 2020 12:42:04 -0500 Subject: [PATCH] Fix Linux/Mac test failure --- uwsift/tests/view/test_export_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uwsift/tests/view/test_export_image.py b/uwsift/tests/view/test_export_image.py index 7cd70045..d732b093 100644 --- a/uwsift/tests/view/test_export_image.py +++ b/uwsift/tests/view/test_export_image.py @@ -121,7 +121,7 @@ def test_create_colorbar(size, mode, exp, monkeypatch, window): @pytest.mark.parametrize("mode,cbar_size,exp", [ (None, (0, 0), (100, 100)), ('vertical', (10, 120), (108, 100)), - ('horizontal', (120, 10), (100, 108)), + ('horizontal', (120, 10), (100, 109)), ]) def test_append_colorbar(mode, cbar_size, exp, monkeypatch, window): """Test colorbar is appended to the appropriate location given the colorbar append direction."""