Skip to content

Commit

Permalink
Typo, hardcode test result
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwthompson committed Aug 5, 2024
1 parent a5530c5 commit 2ed0083
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/releasehistory.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Releases follow the `major.minor.micro` scheme recommended by [PEP440](https://w

### New features

- [PR #1920](https://github.com/openforcefield/openff-toolkit/pull/1920): Adds `Topology.add_molecules`, which takes a list of `Molecule`s is faster when adding many molecules.
- [PR #1920](https://github.com/openforcefield/openff-toolkit/pull/1920): Adds `Topology.add_molecules`, which takes a list of `Molecule`s and is faster when adding many molecules.

### Improved documentation and warnings

Expand Down
2 changes: 1 addition & 1 deletion openff/toolkit/_tests/test_topology.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def test_from_molecules(self):

assert topology.n_molecules == 10_000

assert indices == [*range(10_000)]
assert indices == [*range(1, 10_001)]

def test_from_molecule_nonlist(self):
topology = Topology()
Expand Down

0 comments on commit 2ed0083

Please sign in to comment.