Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
collinjackson committed Aug 26, 2019
1 parent 34863f9 commit 6697ccf
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ void main() {
expect(snapshot.metadata.isFromCache, true);
expect(snapshot.data['hello'], 'world');

while (snapshot.metadata.hasPendingWrites || snapshot.metadata.isFromCache) {
while (
snapshot.metadata.hasPendingWrites || snapshot.metadata.isFromCache) {
snapshot = await snapshotsWithMetadataChanges.take(1).first;
}
expect(snapshot.data['hello'], 'world');
Expand Down

0 comments on commit 6697ccf

Please sign in to comment.