From f40f9ac894e1baae3806dd569fa06ffcac0b1226 Mon Sep 17 00:00:00 2001 From: Stenio Oliveira Date: Thu, 4 Apr 2024 13:59:48 -0300 Subject: [PATCH] adjusted const error in test --- .../test/src/infra/services/bind_service_impl_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shelf_modular/test/src/infra/services/bind_service_impl_test.dart b/shelf_modular/test/src/infra/services/bind_service_impl_test.dart index 2bde731a..07a7c800 100644 --- a/shelf_modular/test/src/infra/services/bind_service_impl_test.dart +++ b/shelf_modular/test/src/infra/services/bind_service_impl_test.dart @@ -18,7 +18,7 @@ void main() { }); test('should throw error not found bind', () { when(() => injector.get()).thenThrow( - const AutoInjectorException('String'), + AutoInjectorException('String'), ); expect( service.getBind().fold(id, id),