We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13536d0 commit ac9ba60Copy full SHA for ac9ba60
packages/firebase_data_connect/firebase_data_connect/example/integration_test/query_e2e.dart
@@ -195,8 +195,8 @@ void runQueryTests() {
195
testWidgets('should be able to add a date and a timestamp',
196
(WidgetTester tester) async {
197
await deleteAllTimestamps();
198
- final timestamp = Timestamp.fromJson('1970-01-11T00:00:00');
199
- final date = DateTime.parse('1970-01-11T00:00:00');
+ final timestamp = Timestamp.fromJson('1970-01-11T00:00:00Z');
+ final date = DateTime.parse('1970-01-11T00:00:00Z');
200
MutationRef ref = MoviesConnector.instance
201
.addDateAndTimestamp(date: date, timestamp: timestamp)
202
.ref();
0 commit comments