Skip to content

Commit

Permalink
Update tests/test_data_processor.py
Browse files Browse the repository at this point in the history
  • Loading branch information
harshil21 authored Oct 27, 2024
1 parent ed2e713 commit a2e2fb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_data_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def test_str(self, data_processor):
data_str = "IMUDataProcessor(max_altitude=0.0, current_altitude=0.0, velocity=0.0, " "max_velocity=0.0, "
assert str(data_processor) == data_str

def test_calculate_velocity(self, data_processor):
def test_calculate_vertical_velocity(self, data_processor):
"""Tests whether the vertical velocity is correctly calculated"""
d = data_processor
assert d.vertical_velocity == 0.0
Expand Down

0 comments on commit a2e2fb4

Please sign in to comment.