From 12cdc1a5e80a8ff25dff25d0b116ef2f8389b4ba Mon Sep 17 00:00:00 2001 From: "mr.mojtaba" Date: Mon, 29 Dec 2025 10:13:04 +0330 Subject: [PATCH] refactor: update auth repository implementation in integration tests by changing type from AuthRepositoryImpl to AuthRepository and adding necessary imports --- .../chicken/test/integration/auth_flow_integration_test.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/chicken/test/integration/auth_flow_integration_test.dart b/packages/chicken/test/integration/auth_flow_integration_test.dart index 1b1bde0..58b6a60 100644 --- a/packages/chicken/test/integration/auth_flow_integration_test.dart +++ b/packages/chicken/test/integration/auth_flow_integration_test.dart @@ -3,12 +3,14 @@ import 'package:mocktail/mocktail.dart'; import 'package:rasadyar_chicken/features/common/data/datasources/remote/auth/auth_remote.dart'; import 'package:rasadyar_chicken/features/common/data/model/response/user_info/user_info_model.dart'; import 'package:rasadyar_chicken/features/common/data/model/response/user_profile_model/user_profile_model.dart'; +import 'package:rasadyar_chicken/features/common/data/repositories/auth/auth_repository.dart'; +import 'package:rasadyar_chicken/features/common/data/repositories/auth/auth_repository_imp.dart'; class MockAuthRemoteDataSource extends Mock implements AuthRemoteDataSource {} void main() { - late AuthRepositoryImpl authRepository; + late AuthRepository authRepository; late MockAuthRemoteDataSource mockAuthRemote; setUp(() {