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), + ); }); }); }