|
14 | 14 | from numpy.testing import assert_array_equal |
15 | 15 |
|
16 | 16 | from mdio.core import Dimension |
17 | | -from mdio.segy.exceptions import GridOverrideIncompatibleError |
18 | | -from mdio.segy.exceptions import GridOverrideMissingParameterError |
19 | 17 | from mdio.segy.exceptions import GridOverrideUnknownError |
20 | 18 | from mdio.segy.geometry import GridOverrider |
21 | 19 |
|
@@ -131,21 +129,6 @@ def test_non_binned(self, mock_streamer_headers: dict[str, npt.NDArray]) -> None |
131 | 129 | class TestStreamerGridOverrides: |
132 | 130 | """Check grid overrides for shot data with streamer acquisition.""" |
133 | 131 |
|
134 | | - def test_missing_param(self, mock_streamer_headers: dict[str, npt.NDArray]) -> None: |
135 | | - """Test missing parameters for the commands.""" |
136 | | - index_names = ("shot_point", "cable", "channel") |
137 | | - chunksize = None |
138 | | - overrider = GridOverrider() |
139 | | - |
140 | | - def test_incompatible_overrides( |
141 | | - self, |
142 | | - mock_streamer_headers: dict[str, npt.NDArray], |
143 | | - ) -> None: |
144 | | - """Test commands that can't be run together.""" |
145 | | - index_names = ("shot_point", "cable", "channel") |
146 | | - chunksize = None |
147 | | - overrider = GridOverrider() |
148 | | - |
149 | 132 | def test_unknown_override( |
150 | 133 | self, |
151 | 134 | mock_streamer_headers: dict[str, npt.NDArray], |
|
0 commit comments