From bfdba4603b373dc05dc234900495e81ecf5b8b79 Mon Sep 17 00:00:00 2001 From: Hans Kokx Date: Tue, 15 Apr 2025 20:07:21 +0200 Subject: [PATCH] Update list_test.dart --- test/extensions/list_test.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/extensions/list_test.dart b/test/extensions/list_test.dart index 79c57d8..984a108 100644 --- a/test/extensions/list_test.dart +++ b/test/extensions/list_test.dart @@ -135,7 +135,9 @@ void main() { test("Empty lists", () { testEquality([], [], true); }); + test("List of different types", () { + testEquality(["a", "b", "c"], [1, 2, 3], false); testEquality([], [], false); });