Replace ListTile
with Chip
in the debugCheckHasMaterial control test
(#102311)
This commit is contained in:
parent
4a72c5345e
commit
900e5405c2
@ -8,7 +8,7 @@ import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
void main() {
|
||||
testWidgets('debugCheckHasMaterial control test', (WidgetTester tester) async {
|
||||
await tester.pumpWidget(const ListTile());
|
||||
await tester.pumpWidget(const Chip(label: Text('label')));
|
||||
final dynamic exception = tester.takeException();
|
||||
expect(exception, isFlutterError);
|
||||
final FlutterError error = exception as FlutterError;
|
||||
@ -28,7 +28,7 @@ void main() {
|
||||
error.toStringDeep(),
|
||||
'FlutterError\n'
|
||||
' No Material widget found.\n'
|
||||
' ListTile widgets require a Material widget ancestor.\n'
|
||||
' Chip widgets require a Material widget ancestor.\n'
|
||||
' In material design, most widgets are conceptually "printed" on a\n'
|
||||
" sheet of material. In Flutter's material library, that material\n"
|
||||
' is represented by the Material widget. It is the Material widget\n'
|
||||
@ -39,7 +39,7 @@ void main() {
|
||||
' one, or use a widget that contains Material itself, such as a\n'
|
||||
' Card, Dialog, Drawer, or Scaffold.\n'
|
||||
' The specific widget that could not find a Material ancestor was:\n'
|
||||
' ListTile\n'
|
||||
' Chip\n'
|
||||
' The ancestors of this widget were:\n'
|
||||
' [root]\n',
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user