Skip to content

Commit

Permalink
Update xarray/tests/test_datatree.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Illviljan authored Jul 11, 2024
1 parent a40b422 commit 7604934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xarray/tests/test_datatree.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,7 +525,7 @@ def test_roundtrip_unnamed_root(self, simple_datatree):
roundtrip = DataTree.from_dict(dt.to_dict())
assert roundtrip.equals(dt)

@pytest.mark.parametrize("copy", [False, True])
@pytest.mark.parametrize("fastpath", [False, True])
def test_fastpath(self, fastpath: bool) -> None:
run1 = DataTree.from_dict({"run1": xr.Dataset({"a": 1})})
dt = DataTree.from_dict({"run1": run1}, fastpath=fastpath)
Expand Down

0 comments on commit 7604934

Please sign in to comment.