Skip to content

Commit

Permalink
missed trailing comma in code that was brought in.
Browse files Browse the repository at this point in the history
  • Loading branch information
freemansoft committed Jul 24, 2023
1 parent 272c42a commit c325887
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/riverpod_graph/test/analyze_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ import 'package:test/test.dart';
void main() {
group('flutter graph analyzer tests', () {
test('throw exception if analysis target directory does not exist', () {
expect(() => verifyRootDirectoryExists('dogfood'),
throwsA(isA<FileSystemException>()));
expect(
() => verifyRootDirectoryExists('dogfood'),
throwsA(isA<FileSystemException>()),
);
});

test('returns true if analysis target directory does exist', () {
Expand Down

0 comments on commit c325887

Please sign in to comment.