File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/dart_firebase_admin/test/google_cloud_firestore Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ void main() {
137137 );
138138 });
139139
140- test ('update a non existingdocument in a transaction' , () async {
140+ test ('update a non existing document in a transaction' , () async {
141141 final DocumentReference <Map <String , dynamic >> docRef =
142142 await initializeTest ('simpleDocument' );
143143
@@ -166,9 +166,9 @@ void main() {
166166 final DocumentReference <Map <String , dynamic >> docRef =
167167 await initializeTest ('simpleDocument' );
168168
169- final setReult = await docRef.set ({'value' : 42 });
169+ final setResult = await docRef.set ({'value' : 42 });
170170
171- final precondition = Precondition .timestamp (setReult .writeTime);
171+ final precondition = Precondition .timestamp (setResult .writeTime);
172172
173173 await firestore.runTransaction (
174174 (transaction) async {
You can’t perform that action at this time.
0 commit comments