Skip to content

Commit

Permalink
test: changed the parameter sens_col_id to val_col_id in the hydropho…
Browse files Browse the repository at this point in the history
…ne objects initialization
  • Loading branch information
SimLrt32 committed Aug 16, 2023
1 parent 72fd965 commit 1b5c0c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/test_acoustic_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
calibration_file = pathlib.Path("tests/test_data/calibration_data.xlsx")
soundtrap = pyhy.soundtrap.SoundTrap(name=name, model=model, serial_number=serial_number,
calibration_file=calibration_file, val='sensitivity', freq_col_id=1,
sens_col_id=29, start_data_id=6)
val_col_id=29, start_data_id=6)


class TestAcuFile(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_acoustic_survey.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
calibration_file = pathlib.Path("tests/test_data/calibration_data.xlsx")
soundtrap = pyhy.soundtrap.SoundTrap(name=name, model=model, serial_number=serial_number,
calibration_file=calibration_file, val='sensitivity', freq_col_id=1,
sens_col_id=29, start_data_id=6)
val_col_id=29, start_data_id=6)

# Acoustic params. Reference pressure 1 uPa
REF_PRESSURE = 1e-6
Expand Down

0 comments on commit 1b5c0c9

Please sign in to comment.