Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion xarray/tests/test_dataarray.py
Original file line number Diff line number Diff line change
Expand Up @@ -3071,7 +3071,7 @@ def test_to_and_from_dict(self):
DataArray.from_dict(d)

# this one is missing some necessary information
d = {"dims": ("t")}
d = {"dims": "t"}
with pytest.raises(
ValueError, match=r"cannot convert dict without the key 'data'"
):
Expand Down