The case when no coordinates following the specified convention in the Timestep are found and a ValueError is raised, is not tested:
|
elif not self.lammps_coordinate_convention in convention_to_col_ix: |
|
raise ValueError( |
|
f"No coordinates following convention " |
|
"{self.lammps_coordinate_convention} found in " |
|
"timestep" |
|
) |
(The incorrect f-string use is fixed in #5053 but a test is still missing.)
The case when no coordinates following the specified convention in the Timestep are found and a
ValueErroris raised, is not tested:mdanalysis/package/MDAnalysis/coordinates/LAMMPS.py
Lines 833 to 838 in 19e675b
(The incorrect f-string use is fixed in #5053 but a test is still missing.)