Skip to content

Commit

Permalink
chore: remove skips for test that is no longer failing
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan-Nelson committed Aug 25, 2023
1 parent 9dc2a5a commit 1fbf725
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

import 'dart:io';

import 'package:amplify_datastore_example/models/ModelProvider.dart';
import 'package:amplify_flutter/amplify_flutter.dart';
import 'package:flutter_test/flutter_test.dart';
Expand Down Expand Up @@ -186,7 +184,7 @@ void main() {
await Amplify.DataStore.save(blog1NewPosts[1].copyWith(blog: blog2));
},
// See: https://github.com/aws-amplify/amplify-flutter/issues/2183
skip: Platform.isAndroid,
// skip: Platform.isAndroid,
);

testWidgets('should respect sort orders', (WidgetTester tester) async {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0

import 'dart:io';

import 'package:amplify_datastore_example/models/ModelProvider.dart';
import 'package:amplify_flutter/amplify_flutter.dart';
import 'package:flutter_test/flutter_test.dart';
Expand Down Expand Up @@ -76,8 +74,6 @@ void main() {
expect(posts.length, 1);
expect(posts[0], post1);
},
// See: https://github.com/aws-amplify/amplify-flutter/issues/2183
skip: Platform.isAndroid,
);

testWidgets('should return the ID of nested objects',
Expand Down

0 comments on commit 1fbf725

Please sign in to comment.