Update list_test.dart

This commit is contained in:
Hans Kokx
2025-04-15 20:07:21 +02:00
parent 5b402763d1
commit bfdba4603b
+2
View File
@@ -135,7 +135,9 @@ void main() {
test("Empty lists", () { test("Empty lists", () {
testEquality([], [], true); testEquality([], [], true);
}); });
test("List of different types", () { test("List of different types", () {
testEquality(["a", "b", "c"], [1, 2, 3], false);
testEquality(<int?>[], <String?>[], false); testEquality(<int?>[], <String?>[], false);
}); });