Skip to content

Commit

Permalink
Removed debug print statements from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chadpav committed Jul 28, 2024
1 parent 08c6e81 commit 5d67e66
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/flutter/test/src/parse_server_sdk_flutter_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ void main() {
fakeConnectivity.updateConnectivityStatus(ConnectivityResult.none);
final result = await completer.future;

// assert
expect(result, ParseConnectivityResult.none);
}, timeout: const Timeout(Duration(seconds: 1)));
});
Expand All @@ -116,7 +115,6 @@ void main() {
final completer = Completer<ParseConnectivityResult>();
fakeConnectivity.addConnectivityStatus(ConnectivityResult.none);
parse.connectivityStream.listen((event) {
print('event: $event');
if (event == ParseConnectivityResult.wifi) {
completer.complete(event);
}
Expand All @@ -126,7 +124,6 @@ void main() {
fakeConnectivity.updateConnectivityStatus(ConnectivityResult.wifi);
final result = await completer.future;

// assert
expect(result, ParseConnectivityResult.wifi);
}, timeout: const Timeout(Duration(seconds: 1)));

Expand All @@ -136,7 +133,6 @@ void main() {
final completer = Completer<ParseConnectivityResult>();
fakeConnectivity.addConnectivityStatus(ConnectivityResult.mobile);
parse.connectivityStream.listen((event) {
print('event: $event');
if (event == ParseConnectivityResult.mobile) {
completer.complete(event);
}
Expand Down

0 comments on commit 5d67e66

Please sign in to comment.