Skip to content

Commit 24a5b14

Browse files
committed
docstring updates
1 parent d09c20b commit 24a5b14

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tests/parsers/test_rinex.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def fixture_single_compare():
106106
107107
Returns
108108
-------
109-
single_compare : list
109+
single_exp_values : list
110110
List of time instance, row names, gnss_sv_id and expected values
111111
for single case.
112112
"""
@@ -126,7 +126,7 @@ def test_rinex_obs_3_load_single(rinex_single_values, single_exp_values):
126126
rinex_single_values : gnss_lib_py.parsers.rinex.RinexObs
127127
Instance of RinexObs class with data loaded from appropriate
128128
file.
129-
compare_values : list
129+
single_exp_values : list
130130
List of lists containing time instance, gnss_sv_id, and expected
131131
value for different
132132
Rinex use cases.
@@ -148,10 +148,10 @@ def test_rinex_obs_3_load_mixed(rinex_mixed_values, mixed_exp_values):
148148
149149
Parameters
150150
----------
151-
rinex_navdata : gnss_lib_py.parsers.rinex.RinexObs
151+
rinex_mixed_values : gnss_lib_py.parsers.rinex.RinexObs
152152
Instance of RinexObs class with data loaded from appropriate
153153
file.
154-
compare_values : list
154+
mixed_exp_values : list
155155
List of indices and values to compare against.
156156
"""
157157
count = 0
@@ -174,7 +174,7 @@ def fixture_sats_per_time_single():
174174
175175
Returns
176176
-------
177-
sats_per_time : list
177+
sats_per_time_single : list
178178
List of number of satellites that are present at each time step.
179179
"""
180180
sats_per_time_single = [25, 24, 24]
@@ -187,7 +187,7 @@ def fixture_sats_per_time_mixed():
187187
188188
Returns
189189
-------
190-
sats_per_time : list
190+
sats_per_time_mixed : list
191191
List of number of satellites that are present at each time step.
192192
"""
193193
sats_per_time_mixed = [25, 25, 26, 26, 24]
@@ -241,4 +241,4 @@ def test_rinex_obs_3_fails(rinex_mixed_values):
241241
assert len(sv_not_rx) == 0
242242
if count == 1:
243243
sv_not_pseudo = rinex_frame.where('gnss_sv_id', 'G29', 'eq')
244-
assert len(sv_not_pseudo) == 0
244+
assert len(sv_not_pseudo) == 0

0 commit comments

Comments
 (0)