We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 658437b commit 1a1dc4eCopy full SHA for 1a1dc4e
packages/firebase_data_connect/firebase_data_connect/example/integration_test/listen_e2e.dart
@@ -64,7 +64,10 @@ void runListenTests() {
64
.ref()
65
.execute();
66
67
- await MoviesConnector.instance.listMovies().ref().execute(fetchPolicy: QueryFetchPolicy.serverOnly);
+ await MoviesConnector.instance
68
+ .listMovies()
69
+ .ref()
70
+ .execute(fetchPolicy: QueryFetchPolicy.serverOnly);
71
72
// Wait for the listener to receive the movie update
73
final bool hasListenerReceived = await hasBeenListened.future;
0 commit comments