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() {
137
137
);
138
138
});
139
139
140
- test ('update a non existingdocument in a transaction' , () async {
140
+ test ('update a non existing document in a transaction' , () async {
141
141
final DocumentReference <Map <String , dynamic >> docRef =
142
142
await initializeTest ('simpleDocument' );
143
143
@@ -166,9 +166,9 @@ void main() {
166
166
final DocumentReference <Map <String , dynamic >> docRef =
167
167
await initializeTest ('simpleDocument' );
168
168
169
- final setReult = await docRef.set ({'value' : 42 });
169
+ final setResult = await docRef.set ({'value' : 42 });
170
170
171
- final precondition = Precondition .timestamp (setReult .writeTime);
171
+ final precondition = Precondition .timestamp (setResult .writeTime);
172
172
173
173
await firestore.runTransaction (
174
174
(transaction) async {
You can’t perform that action at this time.
0 commit comments