Skip to content

Commit

Permalink
Fix parseColor test (#393)
Browse files Browse the repository at this point in the history
  • Loading branch information
mihiron committed Jul 24, 2022
1 parent 49a49a0 commit 9ab3c1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/flutter_native_splash_test.dart
Expand Up @@ -9,7 +9,7 @@ void main() {
expect(parseColor('#ffffff'), 'ffffff');
expect(parseColor(' FAFAFA '), 'FAFAFA');
expect(parseColor('121212'), '121212');
expect(parseColor(null), '');
expect(parseColor(null), null);
expect(() => parseColor('badcolor'), throwsException);
});

Expand Down

0 comments on commit 9ab3c1f

Please sign in to comment.