Skip to content

Commit

Permalink
Fix minor issues with test template
Browse files Browse the repository at this point in the history
  • Loading branch information
dumazy committed Dec 3, 2023
1 parent eeb7c0c commit 94e5f39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions day_generator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ const _exampleInput1 = \'''
/// It will be evaluated against the `_exampleSolutionPart2` below.
///
/// In case the second part uses the same example, uncomment below line instead:
// const _exampleInput2 = _exampleInput;
// const _exampleInput2 = _exampleInput1;
const _exampleInput2 = \'''
\''';
Expand Down Expand Up @@ -191,7 +191,7 @@ void main() {
skip: _puzzleSolutionPart2 == null
? 'Skipped because _puzzleSolutionPart2 is null'
: false,
() => expect(day.solvePart1(), _puzzleSolutionPart2),
() => expect(day.solvePart2(), _puzzleSolutionPart2),
);
},
);
Expand Down

0 comments on commit 94e5f39

Please sign in to comment.