Skip to content
This repository was archived by the owner on Jul 16, 2023. It is now read-only.

Commit 2ecd43e

Browse files
committed
test: fix test example
1 parent 87a618b commit 2ecd43e

File tree

1 file changed

+1
-1
lines changed
  • test/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/examples

1 file changed

+1
-1
lines changed

test/src/analyzers/lint_analyzer/rules/rules_list/use_setstate_synchronously/examples/context_mounted.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class State {
1818
}
1919

2020
class BuildContext {
21-
bool get mounted = true;
21+
bool get mounted => true;
2222
}
2323

2424
Future<String> fetchData() => Future.value('123');

0 commit comments

Comments
 (0)