File tree 3 files changed +29
-13
lines changed
cloud_firestore/cloud_firestore/example/integration_test
firebase_core/firebase_core/ios
3 files changed +29
-13
lines changed Original file line number Diff line number Diff line change @@ -2225,8 +2225,13 @@ void runQueryTests() {
2225
2225
.get ();
2226
2226
} catch (e) {
2227
2227
expect (
2228
- (e as FirebaseException ).message,
2229
- contains ('An error occurred while parsing query arguments' ),
2228
+ (e as FirebaseException )
2229
+ .message!
2230
+ .contains ('Client specified an invalid argument.' ) ||
2231
+ e.message! .contains (
2232
+ 'An error occurred while parsing query arguments' ,
2233
+ ),
2234
+ isTrue,
2230
2235
);
2231
2236
expect (e, isA <FirebaseException >());
2232
2237
}
@@ -2403,10 +2408,13 @@ void runQueryTests() {
2403
2408
.get ();
2404
2409
} catch (e) {
2405
2410
expect (
2406
- (e as FirebaseException ).message,
2407
- contains (
2408
- 'An error occurred while parsing query arguments' ,
2409
- ),
2411
+ (e as FirebaseException )
2412
+ .message!
2413
+ .contains ('Client specified an invalid argument.' ) ||
2414
+ e.message! .contains (
2415
+ 'An error occurred while parsing query arguments' ,
2416
+ ),
2417
+ isTrue,
2410
2418
);
2411
2419
expect (e, isA <FirebaseException >());
2412
2420
}
Original file line number Diff line number Diff line change @@ -1813,8 +1813,13 @@ void runSecondDatabaseTests() {
1813
1813
.get ();
1814
1814
} catch (e) {
1815
1815
expect (
1816
- (e as FirebaseException ).message,
1817
- contains ('An error occurred while parsing query arguments' ),
1816
+ (e as FirebaseException )
1817
+ .message!
1818
+ .contains ('Client specified an invalid argument.' ) ||
1819
+ e.message! .contains (
1820
+ 'An error occurred while parsing query arguments' ,
1821
+ ),
1822
+ isTrue,
1818
1823
);
1819
1824
expect (e, isA <FirebaseException >());
1820
1825
}
@@ -1876,10 +1881,13 @@ void runSecondDatabaseTests() {
1876
1881
.get ();
1877
1882
} catch (e) {
1878
1883
expect (
1879
- (e as FirebaseException ).message,
1880
- contains (
1881
- 'An error occurred while parsing query arguments' ,
1882
- ),
1884
+ (e as FirebaseException )
1885
+ .message!
1886
+ .contains ('Client specified an invalid argument.' ) ||
1887
+ e.message! .contains (
1888
+ 'An error occurred while parsing query arguments' ,
1889
+ ),
1890
+ isTrue,
1883
1891
);
1884
1892
expect (e, isA <FirebaseException >());
1885
1893
}
Original file line number Diff line number Diff line change 1
1
# https://firebase.google.com/support/release-notes/ios
2
2
def firebase_sdk_version! ( )
3
- '10.15 .0'
3
+ '10.16 .0'
4
4
end
You can’t perform that action at this time.
0 commit comments