Skip to content

Commit

Permalink
fix: Set bypasscache to true as a workaround for failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
sitaram-kalluri committed Nov 29, 2023
1 parent 395ad4b commit 9f65d8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/at_end2end_test/test/encryption_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ void main() {
AtClient atClient_2 = await getAtClient(atSign_2, Version(1, 5, 0));
await E2ESyncService.getInstance().syncData(atClient_2.syncService);

var getResult = await atClient_2.get(atKey);
var getResult = await atClient_2.get(atKey, getRequestOptions: GetRequestOptions()..bypassCache = true);
expect(getResult.value, clearText);
}, timeout: Timeout(Duration(minutes: 5)));

Expand Down

0 comments on commit 9f65d8d

Please sign in to comment.