From 6033f2d686617f59f7b6db7cddd525611314ee83 Mon Sep 17 00:00:00 2001 From: Tom Nicholas Date: Fri, 26 Apr 2024 11:09:23 -0600 Subject: [PATCH] Remove test of printing datatree --- xarray/tests/test_formatting.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/xarray/tests/test_formatting.py b/xarray/tests/test_formatting.py index 70338594691..256a02d49e2 100644 --- a/xarray/tests/test_formatting.py +++ b/xarray/tests/test_formatting.py @@ -597,10 +597,6 @@ def test_datatree_printout_nested_node(self): printout = root.__str__() assert printout.splitlines()[2].startswith(" ") - def test_print_datatree(self, simple_datatree): - dt = simple_datatree - print(dt) - def test_datatree_repr_of_node_with_data(self): dat = xr.Dataset({"a": [0, 2]}) dt: DataTree = DataTree(name="root", data=dat)