Skip to content
This repository has been archived by the owner on Oct 17, 2024. It is now read-only.

rev the sdk min to 2.19.0-0 #99

Merged
merged 5 commits into from
Dec 8, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove localy use of ignore: unrelated_type_equality_checks
  • Loading branch information
devoncarew committed Dec 2, 2022
commit 7fa3d0e3e82a7213f2c13732cf461908388f8d96
7 changes: 3 additions & 4 deletions test/int64_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ void main() {
expect(Int64(0), isNot(equals(Int64(1))));
expect(Int64(0), equals(Int32(0)));
expect(Int64(0), isNot(equals(Int32(1))));
expect(Int64(0) == 0, isTrue); // ignore: unrelated_type_equality_checks
expect(Int64(0) == 0, isTrue);
expect(Int64(0), isNot(equals(1)));
expect(Int64(10), isNot(equals(Int64(11))));
expect(Int64(10), equals(Int64(10)));
Expand All @@ -398,12 +398,11 @@ void main() {
expect(Int64(10), equals(Int32(10)));
expect(Int64(10), isNot(equals(Int32(9))));
expect(Int64(10), isNot(equals(11)));
expect(Int64(10) == 10, isTrue); // ignore: unrelated_type_equality_checks
expect(Int64(10) == 10, isTrue);
expect(Int64(10), isNot(equals(9)));
expect(Int64(-10), equals(Int64(-10)));
expect(Int64(-10) != Int64(-10), false);
expect(
Int64(-10) == -10, isTrue); // ignore: unrelated_type_equality_checks
expect(Int64(-10) == -10, isTrue);
expect(Int64(-10), isNot(equals(-9)));
expect(largePos, equals(largePos));
expect(largePos, isNot(equals(largePosPlusOne)));
Expand Down