Skip to content

Commit

Permalink
test: remove unnecessary test
Browse files Browse the repository at this point in the history
Signed-off-by: kminoda <[email protected]>
  • Loading branch information
kminoda committed Dec 14, 2023
1 parent 6a5a618 commit aae33b4
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions tests/utils/test_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,21 +156,6 @@ def test_get_lidar_camera_synced_frame_info_accept_drop_frame_false():
)


def test_get_lidar_camera_synced_frame_info_accept_drop_frame_false():
image_timestamp_list = [0.07, 0.27, 0.37, 0.47]
lidar_timestamp_list = [0.0, 0.1, 0.2, 0.3, 0.4]

with pytest.raises(ValueError):
synced_frame_info_list = misc_utils.get_lidar_camera_synced_frame_info(
image_timestamp_list=image_timestamp_list,
lidar_timestamp_list=lidar_timestamp_list,
lidar_to_camera_latency_sec=0.05,
system_scan_period=0.1,
accept_frame_drop=False,
num_load_frames=5,
)


def test_get_lidar_camera_synced_frame_info_num_load_frames():
image_timestamp_list = [0.07, 0.17, 0.27, 0.37, 0.47]
lidar_timestamp_list = [0.0, 0.1, 0.2, 0.3, 0.4]
Expand Down

0 comments on commit aae33b4

Please sign in to comment.