chore: bump license (#208)
diff --git a/LICENSE b/LICENSE index e647067..3e05c0e 100644 --- a/LICENSE +++ b/LICENSE
@@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Felix Angelov +Copyright (c) 2026 Felix Angelov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal
diff --git a/test/equatable_utils_test.dart b/test/equatable_utils_test.dart index 678a991..9b779d6 100644 --- a/test/equatable_utils_test.dart +++ b/test/equatable_utils_test.dart
@@ -245,8 +245,9 @@ expect(mapEquals(map1, map2), isFalse); }); - test('returns false for maps with different keys containing null values', - () { + test( + 'returns false for maps with different keys ' + 'containing null values', () { expect(mapEquals({'x': null}, {'y': 42}), isFalse); expect(mapEquals({'x': null}, {'y': null}), isFalse); expect(mapEquals({'a': 1, 'b': null}, {'a': 1, 'c': null}), isFalse);