Skip to content

Commit

Permalink
FIX: Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwthompson committed Sep 20, 2024
1 parent 452a7f1 commit 9f7d004
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ def map_methods_to_atom_indices(caplog: pytest.LogCaptureFixture) -> dict[str, l
info = defaultdict(list)

for record in caplog.records:
assert record.levelname == "INFO", "Only INFO logs are expected."
# skip logged warnings from upstreams/other packages
if record.name.startswith("openff.interchange"):
assert record.levelname == "INFO", "Only INFO logs are expected."

message = record.msg

Expand Down Expand Up @@ -230,8 +232,8 @@ def ligand_and_water_and_ions(ligand, water_and_ions) -> Topology:
1.xSage with a ligand in water/ions
2.xSage with a ligand in non-water solvent
3.xSage with a ligand in mixed solvent
4. ff14SB with Sage
5. ff14SB with Sage and preset charges on Protein A
4.xff14SB with Sage
5.xff14SB with Sage and preset charges on Protein A
6.xSage with ligand and OPC water
7.xSage with preset charges on ligand A
8.xSage with preset charges on water
Expand Down

0 comments on commit 9f7d004

Please sign in to comment.