Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
validatorr committed Sep 19, 2023
1 parent 13a07d1 commit d317b52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void validResult_Ok() {
List<FruitTransaction> parseData = new ParseServiceImpl().parseInputData(inputData);
operationService = new OperationService(operationStrategy);
operationService.processOperation(parseData);
String actuall = new ReportServiceImpl().createReport();
assertEquals(expected, actuall);
String actual = new ReportServiceImpl().createReport();
assertEquals(expected, actual);
}
}

0 comments on commit d317b52

Please sign in to comment.