From 2d45909ad1de419a2b7edaf0e52d716d527d9aa9 Mon Sep 17 00:00:00 2001 From: dab246 Date: Wed, 11 Mar 2026 12:59:53 +0700 Subject: [PATCH] TF-4368 Add `tearDown` for consistency with other test groups. --- .../thread/data/repository/thread_repository_impl_test.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/features/thread/data/repository/thread_repository_impl_test.dart b/test/features/thread/data/repository/thread_repository_impl_test.dart index 9a79fa9b5..79de785f5 100644 --- a/test/features/thread/data/repository/thread_repository_impl_test.dart +++ b/test/features/thread/data/repository/thread_repository_impl_test.dart @@ -1331,5 +1331,11 @@ void main() { expect(result.emailList, isNotNull); }, ); + + tearDown(() { + reset(networkDataSource); + reset(localDataSource); + reset(stateDataSource); + }); }); }