Skip to content

Commit

Permalink
204 android
Browse files Browse the repository at this point in the history
  • Loading branch information
turtledreams committed Jul 1, 2024
1 parent 33cad26 commit b3e5b55
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void main() {
await Countly.instance.sessions.endSession();

FlutterForegroundTask.minimizeApp();
await Future.delayed(Duration(seconds: 2));
await tester.pump(Duration(seconds: 2));
FlutterForegroundTask.launchApp();

await Future.delayed(Duration(seconds: 1));
Expand All @@ -50,7 +50,7 @@ void main() {
// - end session (ios only)
// - change ID
// EQ: orientation (android only)
// expect(requestList.length, 5);
expect(requestList.length, Platform.isAndroid ? 5 : 6);

var i = 0;
for (var element in requestList) {
Expand Down

0 comments on commit b3e5b55

Please sign in to comment.