From 88f56f4afd85d5047e836255b7ef2bd0e6ba8a2e Mon Sep 17 00:00:00 2001 From: Sesu8642 <45859254+Sesu8642@users.noreply.github.com> Date: Wed, 6 Mar 2024 22:47:00 +0100 Subject: [PATCH] delete no longer relevant test --- test/tea_validation_test.dart | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/tea_validation_test.dart b/test/tea_validation_test.dart index 35d3817..22ca23c 100644 --- a/test/tea_validation_test.dart +++ b/test/tea_validation_test.dart @@ -45,9 +45,5 @@ void main() { expect(() => _sut.validate(), throwsA(isA())); }); - test('null notes is invalid', () { - _sut.detailedNotes = null; - expect(() => _sut.validate(), throwsA(isA())); - }); }); }