From d2aee57ef173e5cf2f90c718f8a2efc674d6fd5c Mon Sep 17 00:00:00 2001 From: Sixtus Agbo Date: Thu, 21 Mar 2024 01:31:55 +0100 Subject: [PATCH] Remove test case for sentRequestIdStateProvider I removed test case for this provider because this provider does not exist in the repository anymore. With recent changes, it has been removed. --- test/providers/ui_providers_test.dart | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/test/providers/ui_providers_test.dart b/test/providers/ui_providers_test.dart index c7a2f5a0..dde4983f 100644 --- a/test/providers/ui_providers_test.dart +++ b/test/providers/ui_providers_test.dart @@ -330,23 +330,4 @@ void main() { expect(isDisposed, true); }); }); - - group("Testing sentRequestIdStateProvider", () { - testWidgets( - 'sentRequestIdStateProvider should have an initial value of null', - (tester) async { - await tester.pumpWidget( - const ProviderScope( - child: MaterialApp( - home: CollectionPane(), - ), - ), - ); - - // Verify that the initial value is null - final collectionPane = tester.element(find.byType(CollectionPane)); - final container = ProviderScope.containerOf(collectionPane); - expect(container.read(sentRequestIdStateProvider), null); - }); - }); }