Skip to content

Commit

Permalink
Fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ajfriedman22 committed Oct 7, 2024
1 parent b7abcdb commit f17660a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ensemble_md/tests/test_coordinate_swap.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def test_perform_shift():
assert was_it_fixed is True
assert len(broken_pairs) == 0

broken_mol_2D = md.load(f'broken_mol_2D.gro')
broken_mol_2D = md.load(f'{input_path}/coord_swap/broken_mol_2D.gro')

partial_fix, was_it_fixed, prev_shifted_atoms = coordinate_swap.perform_shift(broken_mol_2D, [2.74964, 2.74964, 2.74964], [[0, 4]], [], 2) # noqa: E501

Expand All @@ -115,7 +115,7 @@ def test_perform_shift():
assert was_it_fixed is True
assert len(broken_pairs) == 0

broken_mol_3D = md.load(f'broken_mol_3D.gro')
broken_mol_3D = md.load(f'{input_path}/coord_swap/broken_mol_3D.gro')

partial_fix, was_it_fixed, prev_shifted_atoms = coordinate_swap.perform_shift(broken_mol_3D, [2.74964, 2.74964, 2.74964], [[0, 4]], [], 3) # noqa: E501

Expand Down

0 comments on commit f17660a

Please sign in to comment.