Skip to content

Commit

Permalink
Add missing parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
janbridley committed Aug 18, 2024
1 parent 4c016e5 commit 0f14d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hoomd/md/pytest/test_burst_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,4 +280,4 @@ def test_burst_dump_empty_buffer(sim, tmp_path, empty_buffer):
burst_writer.flush()
if sim.device.communicator.rank == 0:
with gsd.hoomd.open(name=filename, mode='r') as traj:
assert len(traj) == 6 if empty_buffer else 8
assert len(traj) == (6 if empty_buffer else 8)

0 comments on commit 0f14d86

Please sign in to comment.