updated reporter tests with new StepStartedMessage.

This commit is contained in:
Christer 2019-03-07 11:28:21 +01:00
parent 1dd9bd856d
commit db215fd8eb
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class ReporterMock extends Reporter {
Future<void> onScenarioFinished(FinishedMessage message) async =>
onScenarioFinishedInvocationCount += 1;
@override
Future<void> onStepStarted(StartedMessage message) async =>
Future<void> onStepStarted(StepStartedMessage message) async =>
onStepStartedInvocationCount += 1;
@override
Future<void> onStepFinished(StepFinishedMessage message) async {