From f53832b0bfdfeb7bf9c19de388b23954684afb16 Mon Sep 17 00:00:00 2001 From: Xavier Lin Date: Tue, 17 Oct 2023 09:28:06 -0400 Subject: [PATCH] ci: im --- tests/at_functional_test/test/atclient_putText_test.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/at_functional_test/test/atclient_putText_test.dart b/tests/at_functional_test/test/atclient_putText_test.dart index 65bc6338b..855176610 100644 --- a/tests/at_functional_test/test/atclient_putText_test.dart +++ b/tests/at_functional_test/test/atclient_putText_test.dart @@ -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); @@ -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();