Skip to content

Commit ebde618

Browse files
committed
obs2:use: test with sensible values
1 parent af831cd commit ebde618

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/georinex/tests/test_obs2.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def test_one_sv():
190190
assert obs.fast_processing
191191

192192

193-
@pytest.mark.parametrize("use", (None, " ", "", ["G", "R", "S"]))
193+
@pytest.mark.parametrize("use", (None, {"G", "R", "S"}))
194194
def test_all_systems(tmp_path, use):
195195
"""
196196
./ReadRinex.py tests/demo.10o -o r2all.nc
@@ -201,6 +201,7 @@ def test_all_systems(tmp_path, use):
201201
truth = xarray.open_dataset(R / "r2all.nc", group="OBS")
202202
# %% test reading all satellites
203203
obs = gr.load(R / "demo.10o", use=use)
204+
204205
assert obs.equals(truth)
205206
assert obs.fast_processing
206207

0 commit comments

Comments
 (0)