Skip to content

Commit

Permalink
chore: removed unnecessary comments
Browse files Browse the repository at this point in the history
  • Loading branch information
khatruong2009 committed Sep 20, 2023
1 parent da94fe3 commit 0f3bae3
Showing 1 changed file with 0 additions and 6 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

@Timeout(Duration(seconds: 300))

import 'dart:convert';

import 'package:amplify_core/amplify_core.dart';
Expand Down Expand Up @@ -98,7 +96,6 @@ void main() {

await provider.ready;

// Verify that _loggingConstraint exists
expect(
provider.loggingConstraint!.toJson(),
equals(json.decode(sampleJson)),
Expand Down Expand Up @@ -127,7 +124,6 @@ void main() {

await provider.ready;

// Verify that _loggingConstraint uses local storage
expect(
provider.loggingConstraint!.toJson(),
equals(json.decode(sampleJson)),
Expand Down Expand Up @@ -195,7 +191,6 @@ void main() {

await provider.ready;

// Verify that _loggingConstraint got updated
expect(
provider.loggingConstraint!.toJson(),
equals(json.decode(updatedJson)),
Expand Down Expand Up @@ -226,7 +221,6 @@ void main() {

await provider.ready;

// Verify that _loggingConstraint is set
expect(provider.loggingConstraint, equals(null));
});
});
Expand Down

0 comments on commit 0f3bae3

Please sign in to comment.