Skip to content

Commit

Permalink
fix capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
zachcp committed Oct 24, 2024
1 parent e105ae3 commit d03d713
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ferritin-core/src/core/atomcollection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ mod tests {
let file_path = PathBuf::from(manifest_dir)
.join("tests")
.join("data")
.join("101M.cif");
.join("101m.cif");

let (pdb_data, _errors) = pdbtbx::open(file_path.to_str().unwrap()).unwrap();
assert_eq!(pdb_data.atom_count(), 1413);
Expand Down Expand Up @@ -455,7 +455,7 @@ mod tests {
let file_path = PathBuf::from(manifest_dir)
.join("tests")
.join("data")
.join("101M.cif");
.join("101m.cif");

let (pdb, _errors) = pdbtbx::open(file_path.to_str().unwrap()).unwrap();
assert_eq!(pdb.atom_count(), 1413);
Expand Down

0 comments on commit d03d713

Please sign in to comment.