From dfcace6865f93180b17f9f0a380a6ff6649edec6 Mon Sep 17 00:00:00 2001 From: arturplaczek Date: Tue, 12 Apr 2022 20:02:48 +0200 Subject: [PATCH] fix: update tests --- .../pinball_theme/test/src/themes/android_theme_test.dart | 5 ++++- packages/pinball_theme/test/src/themes/dash_theme_test.dart | 5 ++++- packages/pinball_theme/test/src/themes/dino_theme_test.dart | 5 ++++- .../pinball_theme/test/src/themes/sparky_theme_test.dart | 5 ++++- 4 files changed, 16 insertions(+), 4 deletions(-) diff --git a/packages/pinball_theme/test/src/themes/android_theme_test.dart b/packages/pinball_theme/test/src/themes/android_theme_test.dart index 24186c35..ba66b6f4 100644 --- a/packages/pinball_theme/test/src/themes/android_theme_test.dart +++ b/packages/pinball_theme/test/src/themes/android_theme_test.dart @@ -19,7 +19,10 @@ void main() { }); test('characterAsset is correct', () { - expect(AndroidTheme().characterAsset, equals(Assets.images.android)); + expect( + AndroidTheme().characterAsset, + equals(Assets.images.android.character), + ); }); }); } diff --git a/packages/pinball_theme/test/src/themes/dash_theme_test.dart b/packages/pinball_theme/test/src/themes/dash_theme_test.dart index 2fb429e0..2a12ba09 100644 --- a/packages/pinball_theme/test/src/themes/dash_theme_test.dart +++ b/packages/pinball_theme/test/src/themes/dash_theme_test.dart @@ -19,7 +19,10 @@ void main() { }); test('characterAsset is correct', () { - expect(DashTheme().characterAsset, equals(Assets.images.dash)); + expect( + DashTheme().characterAsset, + equals(Assets.images.dash.character), + ); }); }); } diff --git a/packages/pinball_theme/test/src/themes/dino_theme_test.dart b/packages/pinball_theme/test/src/themes/dino_theme_test.dart index 673cccf6..18cafbbe 100644 --- a/packages/pinball_theme/test/src/themes/dino_theme_test.dart +++ b/packages/pinball_theme/test/src/themes/dino_theme_test.dart @@ -19,7 +19,10 @@ void main() { }); test('characterAsset is correct', () { - expect(DinoTheme().characterAsset, equals(Assets.images.dino)); + expect( + DinoTheme().characterAsset, + equals(Assets.images.dino.character), + ); }); }); } diff --git a/packages/pinball_theme/test/src/themes/sparky_theme_test.dart b/packages/pinball_theme/test/src/themes/sparky_theme_test.dart index d0d96566..145ad4e0 100644 --- a/packages/pinball_theme/test/src/themes/sparky_theme_test.dart +++ b/packages/pinball_theme/test/src/themes/sparky_theme_test.dart @@ -19,7 +19,10 @@ void main() { }); test('characterAsset is correct', () { - expect(SparkyTheme().characterAsset, equals(Assets.images.sparky)); + expect( + SparkyTheme().characterAsset, + equals(Assets.images.sparky.character), + ); }); }); }