We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5359d90 commit 2041f6eCopy full SHA for 2041f6e
xarray/tests/test_backends.py
@@ -632,7 +632,9 @@ def test_roundtrip_boolean_dtype(self) -> None:
632
with self.roundtrip(original) as actual:
633
assert_identical(original, actual)
634
assert actual["x"].dtype == "bool"
635
- assert actual["x"].encoding["dtype"] == "bool"
+ with self.roundtrip(actual) as actual2:
636
+ assert_identical(original, actual2)
637
+ assert actual2["x"].dtype == "bool"
638
639
def test_orthogonal_indexing(self) -> None:
640
in_memory = create_test_data()
0 commit comments