Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
robiness committed Nov 6, 2024
1 parent 6e1a69e commit 5189333
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/util/load_app_fonts/app_font_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ void main() {
test('When defined in pubspec a third-party font is loaded', () async {
int exitCode = -1;
late Directory tempDir;
late StreamSubscription s1, s2;
late StreamSubscription s1;
late StreamSubscription s2;
try {
// Copy virtual/montserrat to test folder
tempDir = Directory.systemTemp.createTempSync('app_font_test');
Expand Down
2 changes: 1 addition & 1 deletion test/util/load_app_fonts/default_font_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void main() {
'${Directory.current.path}/test/util/load_app_fonts/virtual/default_font',
).copyTo(testProjectDir);
// Run pub get
final run = await Process.run(
await Process.run(
flutterPath,
['pub', 'get'],
workingDirectory: testProjectDir,
Expand Down

0 comments on commit 5189333

Please sign in to comment.