Skip to content

Commit d2aee57

Browse files
committed
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.
1 parent 5b3c98d commit d2aee57

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

test/providers/ui_providers_test.dart

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -330,23 +330,4 @@ void main() {
330330
expect(isDisposed, true);
331331
});
332332
});
333-
334-
group("Testing sentRequestIdStateProvider", () {
335-
testWidgets(
336-
'sentRequestIdStateProvider should have an initial value of null',
337-
(tester) async {
338-
await tester.pumpWidget(
339-
const ProviderScope(
340-
child: MaterialApp(
341-
home: CollectionPane(),
342-
),
343-
),
344-
);
345-
346-
// Verify that the initial value is null
347-
final collectionPane = tester.element(find.byType(CollectionPane));
348-
final container = ProviderScope.containerOf(collectionPane);
349-
expect(container.read(sentRequestIdStateProvider), null);
350-
});
351-
});
352333
}

0 commit comments

Comments
 (0)