Skip to content
This repository has been archived by the owner on Nov 1, 2024. It is now read-only.

Commit

Permalink
Update cli_util_test.dart
Browse files Browse the repository at this point in the history
Update tests to not use deprecated name.
  • Loading branch information
lrhn authored Apr 3, 2024
1 parent 143ef58 commit ab01aac
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions test/cli_util_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ import 'package:cli_util/cli_util.dart';
import 'package:path/path.dart' as p;
import 'package:test/test.dart';

void main() => defineTests();

void defineTests() {
group('getSdkPath', () {
void main() {
group('sdkPath', () {
test('sdkPath', () {
expect(getSdkPath(), isNotNull);
expect(sdkPath, isNotNull);
});
});

Expand Down

0 comments on commit ab01aac

Please sign in to comment.