Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
anarkiwi committed Jun 7, 2024
1 parent 1a2bd76 commit 9df86cb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions gamutrfwaterfall/tests/test_waterfall.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,14 @@ def test_run_waterfall(self):
# timestamp,start_freq,end_freq,dB,type
# 1.0,1.49609375,1.5078125,100.0,narrowband
self.assertEqual(
round(peak_min / 1e6, 1), round(float(row["start_freq"]), 1), row
round(peak_min / 1e6, 1),
round(float(row["start_freq"]), 1),
row,
)
self.assertEqual(
round(peak_max / 1e6, 1), round(float(row["end_freq"]), 1), row
round(peak_max / 1e6, 1),
round(float(row["end_freq"]), 1),
row,
)
self.assertEqual(peak_val, float(row["dB"]), row)

Expand Down

0 comments on commit 9df86cb

Please sign in to comment.