Skip to content

Commit

Permalink
plot=False
Browse files Browse the repository at this point in the history
  • Loading branch information
kelle committed Nov 15, 2024
1 parent c3c4180 commit 598c1f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_sed.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ def test_edit_spectrum(self):
s.add_spectrum(self.spec1)

# Smooth it
s.edit_spectrum(0, smooth={'beta': 5}, plot=True)
s.edit_spectrum(0, smooth={'beta': 5}, plot=False)

# Unsmooth it
s.edit_spectrum(0, restore=True)
s.edit_spectrum(0, restore=True, plot=False)

# Bad beta
self.assertRaises((ValueError, TypeError), s.edit_spectrum, idx=0, smooth={'beta': 'foo'})
Expand Down

0 comments on commit 598c1f2

Please sign in to comment.