Skip to content

Commit

Permalink
fix: analyzer issues
Browse files Browse the repository at this point in the history
  • Loading branch information
murali-shris committed Jan 11, 2024
1 parent 71d346e commit 6d719bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ void main() {
var atChops = AtChopsImpl(atChopsKeys);
var encryptedAesKey =
atChops.encryptString(aesKey, EncryptionKeyType.rsa2048).result;

var decryptedAesKey =
//ignore: deprecated_member_use_from_same_package
EncryptionUtil.decryptKey(encryptedAesKey, encryptionPrivateKey);
expect(decryptedAesKey, aesKey);
});
Expand Down
1 change: 0 additions & 1 deletion packages/at_client/test/encryption_service_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import 'package:at_commons/at_builders.dart';
import 'package:at_persistence_secondary_server/at_persistence_secondary_server.dart';
import 'package:mocktail/mocktail.dart';
import 'package:test/test.dart';
import 'package:at_chops/at_chops.dart';

class MockAtClientManager extends Mock implements AtClientManager {}

Expand Down

0 comments on commit 6d719bb

Please sign in to comment.