Skip to content

Commit

Permalink
ci: im
Browse files Browse the repository at this point in the history
  • Loading branch information
Xlin123 committed Oct 17, 2023
1 parent 7f44ae8 commit f53832b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/at_functional_test/test/atclient_putText_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,8 @@ void main() {
///
group('A group of tests to verify get of symmetric shared keys', () {
test('Positive test - self keys ', () async {
await scan();
var atKey =
AtKey.self("shared_key", namespace: "", sharedBy: "@alice🛠").build();
AtKey.self("shared_key", namespace: "bob", sharedBy: "@alice🛠").build();

var result = await atClientManager.atClient.get(atKey);
expect(result, returnsNormally);
Expand All @@ -110,7 +109,7 @@ void main() {
await scan();
atClientManager.atClient.encryptionService!.logger
.info(atClientManager.atClient.getCurrentAtSign());
var atKey = (AtKey.shared("shared_key", sharedBy: "@alice🛠")
var atKey = (AtKey.shared("shared_key", sharedBy: "@alice🛠", namespace: null)
..sharedWith("@bob🛠")
..cache(1000, true))
.build();
Expand Down

0 comments on commit f53832b

Please sign in to comment.