Skip to content

Commit

Permalink
Fix analysis failure due to infos moving around.
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmorgan committed Aug 25, 2023
1 parent a71e916 commit 2f7e449
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions test/list_multimap/built_list_multimap_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) 2015, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// ignore_for_file: unrelated_type_equality_checks

import 'package:built_collection/src/list.dart';
import 'package:built_collection/src/list_multimap.dart';
Expand Down Expand Up @@ -262,7 +263,6 @@ void main() {

test('compares not equal to different type', () {
expect(
// ignore: unrelated_type_equality_checks
BuiltListMultimap<int, String>({
1: ['1'],
2: ['2'],
Expand Down Expand Up @@ -318,7 +318,6 @@ void main() {

test('compares without throwing for same hashcode different key type', () {
expect(
// ignore: unrelated_type_equality_checks
BuiltCollectionTestHelpers.overridenHashcodeBuiltListMultimap({
1: ['1']
}, 0) ==
Expand Down
3 changes: 1 addition & 2 deletions test/set_multimap/built_set_multimap_test.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) 2015, Google Inc. Please see the AUTHORS file for details.
// All rights reserved. Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// ignore_for_file: unrelated_type_equality_checks

import 'package:built_collection/src/set.dart';
import 'package:built_collection/src/set_multimap.dart';
Expand Down Expand Up @@ -261,7 +262,6 @@ void main() {

test('compares not equal to different type', () {
expect(
// ignore: unrelated_type_equality_checks
BuiltSetMultimap<int, String>({
1: ['1'],
2: ['2'],
Expand Down Expand Up @@ -317,7 +317,6 @@ void main() {

test('compares without throwing for same hashcode different key type', () {
expect(
// ignore: unrelated_type_equality_checks
BuiltCollectionTestHelpers.overridenHashcodeBuiltSetMultimap({
1: ['1']
}, 0) ==
Expand Down

0 comments on commit 2f7e449

Please sign in to comment.