From 73e685133f9a3a7ca398bee7a2a96152aefb138d Mon Sep 17 00:00:00 2001 From: Tom Vo Date: Thu, 14 Sep 2023 15:08:38 -0700 Subject: [PATCH] Fix tests --- tests/test_dataset.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_dataset.py b/tests/test_dataset.py index 0875f19a..74b5edcc 100644 --- a/tests/test_dataset.py +++ b/tests/test_dataset.py @@ -337,7 +337,7 @@ def test_raises_deprecation_warning_when_passing_add_bounds_true(self): assert issubclass(w[0].category, DeprecationWarning) assert str(w[0].message) == ( "`add_bounds=True` will be deprecated after v0.6.0. Please use a list " - "of axis strings instead (e.g., `add_bounds=['X', 'Y'])." + "of axis strings instead (e.g., `add_bounds=['X', 'Y']`)." ) expected = generate_dataset( @@ -361,7 +361,7 @@ def test_raises_deprecation_warning_when_passing_add_bounds_false(self): assert issubclass(w[0].category, DeprecationWarning) assert str(w[0].message) == ( "`add_bounds=False` will be deprecated after v0.6.0. Please use " - "`add_bounds=None`` instead." + "`add_bounds=None` instead." ) assert result.identical(ds_no_bounds)