From c1e73c08f61bab3af1322cb9b908dab3c2769570 Mon Sep 17 00:00:00 2001 From: Qun Cheng Date: Mon, 6 May 2024 10:02:29 -0700 Subject: [PATCH] Fix nit --- .../api/test/material/button_style/button_style.0_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/api/test/material/button_style/button_style.0_test.dart b/examples/api/test/material/button_style/button_style.0_test.dart index 6df74d6bbda5..db4251fb21db 100644 --- a/examples/api/test/material/button_style/button_style.0_test.dart +++ b/examples/api/test/material/button_style/button_style.0_test.dart @@ -27,7 +27,7 @@ void main() { findsOne, ); - //one OutlinedButton with onPressed null + // One OutlinedButton with onPressed null. expect( find.byWidgetPredicate((Widget widget) { return widget is OutlinedButton && widget.onPressed == null; @@ -35,7 +35,7 @@ void main() { findsOne, ); - //one OutlinedButton with onPressed not null + // One OutlinedButton with onPressed not null. expect( find.byWidgetPredicate((Widget widget) { return widget is OutlinedButton && widget.onPressed != null;