Skip to content

Commit

Permalink
Merge pull request S-ecki#13 from dumazy/fix/test_template_fixes
Browse files Browse the repository at this point in the history
Fix minor issues with test template
  • Loading branch information
S-ecki authored Dec 3, 2023
2 parents eeb7c0c + 94e5f39 commit bf3677a
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 bf3677a

Please sign in to comment.