Skip to content

Commit

Permalink
remaining injector tests repaired
Browse files Browse the repository at this point in the history
  • Loading branch information
chrxh committed Oct 19, 2023
1 parent 889d3c3 commit 9074970
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/EngineTests/InjectorTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ TEST_F(InjectorTests, matchButNoInjection)
.setId(3)
.setPos({9.0f, 10.0f})
.setMaxConnections(2)
.setExecutionOrderNumber(0).setCellFunction(ConstructorDescription().setGenome({})),
.setExecutionOrderNumber(0).setCellFunction(ConstructorDescription()),
});
data.addConnection(1, 2);

Expand Down Expand Up @@ -236,7 +236,7 @@ TEST_F(InjectorTests, injectOnlyEmptyCells_success)
data.addConnection(3, 4);

_simController->setSimulationData(data);
for (int i = 0; i < 1 + 6 * 3; ++i) {
for (int i = 0; i < 1; ++i) {
_simController->calcTimesteps(1);
}

Expand Down

0 comments on commit 9074970

Please sign in to comment.