Skip to content

Commit

Permalink
fixed one missed instance of kwarg from pydata#9602
Browse files Browse the repository at this point in the history
  • Loading branch information
TomNicholas committed Oct 13, 2024
1 parent 7f39767 commit b3a773c
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 @@ -1324,7 +1324,7 @@ def test_deduplicated_after_setitem(self):
}
)
dt["b/x"] = dt["x"]
child_dataset = dt.children["b"].to_dataset(inherited=False)
child_dataset = dt.children["b"].to_dataset(inherit=False)
expected = xr.Dataset()
assert_identical(child_dataset, expected)

Expand Down

0 comments on commit b3a773c

Please sign in to comment.