Skip to content

Commit

Permalink
Update test_examples.py
Browse files Browse the repository at this point in the history
changed unused generator expression to actually run the models.
  • Loading branch information
Corvince authored May 9, 2020
1 parent b290439 commit 96f23d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,5 @@ def test_examples(self):
server.server.render_model()
Model = getattr(mod, classcase(example))
model = Model()
(model.step() for _ in range(100))
for _ in range(10):
model.step()

0 comments on commit 96f23d8

Please sign in to comment.