Skip to content

Commit a52110c

Browse files
max-sixtyshoyer
authored andcommitted
pytest deprecation (pydata#3051)
1 parent c729121 commit a52110c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/tests/test_combine.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ def test_empty_input(self):
344344
@pytest.mark.xfail
345345
def test_manual_concat_too_many_dims_at_once(self):
346346
objs = [Dataset({'x': [0], 'y': [1]}), Dataset({'y': [0], 'x': [1]})]
347-
with pytest.raises(ValueError, "not equal across datasets"):
347+
with pytest.raises(ValueError, match="not equal across datasets"):
348348
combine_nested(objs, concat_dim='x', coords='minimal')
349349

350350
def test_manual_concat_along_new_dim(self):

0 commit comments

Comments
 (0)