Skip to content

Commit

Permalink
DOC: improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jklenzing committed Dec 23, 2021
1 parent 7af5d65 commit e099ac9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pysatMissions/tests/test_instruments.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ def test_sgp4_data_continuity(self, kwargs):
Parameters
----------
kwargs : dict
Optional kwargs to pass through.
Optional kwargs to pass through. If empty, instrument will be
default TLEs.
"""

# Define sat with custom Keplerian inputs
Expand All @@ -124,7 +126,8 @@ def test_sgp4_data_continuity(self, kwargs):

# Check that the jump between days is within 3 sigma of average gradient
del_g = np.abs(average_gradient - gradient_between_days)
assert np.all(del_g < (3. * std_gradient))
assert np.all(del_g < (3. * std_gradient)), \
"Gap between days outside of 3 sigma"

return

Expand Down

0 comments on commit e099ac9

Please sign in to comment.