Skip to content

Commit

Permalink
Add more bad formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Stargator committed Jan 2, 2025
1 parent e8b2384 commit ce984b8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/create_exercise_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ void main() {
) {
group('words', () {
test('null returns empty list', () {
expect(words(null), equals(['']));
expect(words(null)
, equals(['']));
});

test('empty string returns empty list', () {
expect(words(''), equals(['']));
expect(words('')
, equals(['']));
});

test('single word returns list with single element', () {
Expand Down

0 comments on commit ce984b8

Please sign in to comment.