From 518933328e4bfd5a8401b55ae313890618e066d8 Mon Sep 17 00:00:00 2001 From: robiness Date: Wed, 6 Nov 2024 16:12:05 +0100 Subject: [PATCH] Fix lints --- test/util/load_app_fonts/app_font_test.dart | 3 ++- test/util/load_app_fonts/default_font_test.dart | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/test/util/load_app_fonts/app_font_test.dart b/test/util/load_app_fonts/app_font_test.dart index cebace31..caa9aa19 100644 --- a/test/util/load_app_fonts/app_font_test.dart +++ b/test/util/load_app_fonts/app_font_test.dart @@ -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'); diff --git a/test/util/load_app_fonts/default_font_test.dart b/test/util/load_app_fonts/default_font_test.dart index 13eb58d5..435fde5e 100644 --- a/test/util/load_app_fonts/default_font_test.dart +++ b/test/util/load_app_fonts/default_font_test.dart @@ -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,