We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b43c866 commit 8fe3e89Copy full SHA for 8fe3e89
1 file changed
tests/plate_simulation/runtest/sweep_test.py
@@ -7,7 +7,6 @@
7
# (see LICENSE file at the root of this source code package). '
8
# '
9
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
10
-from io import BytesIO
11
12
from geoh5py import Workspace
13
from geoh5py.groups import SimPEGGroup
@@ -105,10 +104,6 @@ def test_sweep(tmp_path):
105
104
n = len(list(workdir.glob("*.geoh5")))
106
assert n == 6
107
108
- # Check that the summary file was created and has the expected number of rows
109
- with Workspace(tmp_path / "test.geoh5") as ws:
110
- file_data = ws.get_entity("summary.xlsx")[0]
111
- blob = BytesIO(file_data.file_bytes)
112
- xls = read_excel(blob)
+ xls = read_excel(tmp_path / "summary.xlsx")
113
114
assert len(xls) == 6
0 commit comments