From dd1edcc66eb3f23c4812a12ca4627c4085371196 Mon Sep 17 00:00:00 2001 From: Gerson Alexander Pardo Gamez Date: Sat, 18 Feb 2023 22:22:07 -0500 Subject: [PATCH] chore: fixed scan errors --- example/test/app_test.dart | 3 ++- pubspec.yaml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/example/test/app_test.dart b/example/test/app_test.dart index 035a1f9..111b22e 100644 --- a/example/test/app_test.dart +++ b/example/test/app_test.dart @@ -3,7 +3,8 @@ import 'package:openpgp/openpgp.dart'; void main() { test('Generate Keypair', () async { - var keyPair = await OpenPGP.generate(options: Options()..email="sample@sample.com"); + var keyPair = + await OpenPGP.generate(options: Options()..email = "sample@sample.com"); print(keyPair.privateKey); expect(keyPair.publicKey != "", true); }); diff --git a/pubspec.yaml b/pubspec.yaml index 47152c0..7c44a18 100755 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -17,7 +17,7 @@ dependencies: sdk: flutter ffi: ^2.0.1 flat_buffers: ^2.0.5 - path: any + path: ^1.8.2 dev_dependencies: flutter_test: