Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
cbouy committed Jul 1, 2024
1 parent 9172025 commit cc30735
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ifp.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_interaction_data_iteration(ifp: IFP) -> None:
data = next(ifp.interactions())
assert isinstance(data, InteractionData)
assert data.ligand == ResidueId("LIG", 1, "G")
assert data.protein.chain == "A"
assert data.protein.chain in {"A", "B"}
assert data.interaction in {"Hydrophobic", "VdWContact"}
assert "distance" in data.metadata
for data in ifp.interactions():
Expand Down

0 comments on commit cc30735

Please sign in to comment.