diff --git a/test/cli_util_test.dart b/test/cli_util_test.dart index 349b629..e16bc59 100644 --- a/test/cli_util_test.dart +++ b/test/cli_util_test.dart @@ -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); }); });