Skip to content

Commit

Permalink
GO GREEN
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Lehmann committed Dec 13, 2023
1 parent 8b080f0 commit f69145c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ void main() {

final content = verify(
() => generatorTarget.createFile(
any(that: equals("figmage_example/pubspec.yaml")),
any(that: equals("pubspec.yaml")),
captureAny(),
),
).captured.first as List<int>;
Expand All @@ -117,7 +117,7 @@ void main() {

final content = verify(
() => generatorTarget.createFile(
any(that: equals("figmage_example/pubspec.yaml")),
any(that: equals("pubspec.yaml")),
captureAny(),
),
).captured.first as List<int>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ void main() {
verify(
() => processRunner.call(
'dart',
['format'],
['format', '.'],
workingDirectory: 'dir',
),
).called(1);
Expand Down

0 comments on commit f69145c

Please sign in to comment.