Skip to content

Commit

Permalink
tests: added default value in precursor object.
Browse files Browse the repository at this point in the history
  • Loading branch information
vijay-gnanasambandan-bruker committed Dec 22, 2023
1 parent fbbbdd3 commit a987472
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/spectrum_readers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ fn minitdf_reader() {
intensity: 0.0,
index: 1,
frame_index: 1,
collision_energy: 0.0,
}),
index: 0,
},
Expand All @@ -43,6 +44,7 @@ fn minitdf_reader() {
intensity: 0.0,
index: 2,
frame_index: 2,
collision_energy: 0.0,
}),
index: 1,
},
Expand Down Expand Up @@ -74,6 +76,7 @@ fn tdf_reader_dda() {
intensity: 10.0,
index: 1,
frame_index: 1,
collision_energy: 0.0,
}),
index: 0,
},
Expand All @@ -88,6 +91,7 @@ fn tdf_reader_dda() {
intensity: 10.0,
index: 2,
frame_index: 1,
collision_energy: 0.0,
}),
index: 1,
},
Expand All @@ -102,6 +106,7 @@ fn tdf_reader_dda() {
intensity: 10.0,
index: 3,
frame_index: 3,
collision_energy: 0.0,
}),
index: 2,
},
Expand Down

0 comments on commit a987472

Please sign in to comment.