Skip to content

Commit

Permalink
fix array comparison assertion issue in test
Browse files Browse the repository at this point in the history
  • Loading branch information
cadeduckworth committed Aug 4, 2023
1 parent 5118ada commit 81a07ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mdpow/tests/test_workflows_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_guess_elements(self, create_universe):
u = create_universe
guessed_elements = base.guess_elements(u.atoms)

assert guessed_elements == self.check_guessed_elements
assert guessed_elements.all() == self.check_guessed_elements.all()

def test_project_paths(self, test_df_data, project_paths_data):
test_df = test_df_data
Expand Down

0 comments on commit 81a07ec

Please sign in to comment.