Skip to content

Commit

Permalink
Fixes #2495 failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
msevestre committed Jan 2, 2023
1 parent 541acfe commit 396d1e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/PKSim.Tests/Core/IndividualSimulationEngineSpecs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ protected override async Task Context()
await base.Context();
_dataRepository = A.Fake<DataRepository>();
_simulation = A.Fake<IndividualSimulation>();
A.CallTo(_simModelManager).WithReturnType<SimulationRunResults>().Returns(new SimulationRunResults(Enumerable.Empty<SolverWarning>(), _dataRepository));
A.CallTo(_simModelManager).WithReturnType<SimulationRunResults>().Returns(new SimulationRunResults(Enumerable.Empty<SolverWarning>(), "ERROR"));
await sut.RunAsync(_simulation, _simulationRunOption);
}

Expand Down

0 comments on commit 396d1e3

Please sign in to comment.