Unverified Commit 1f7082db authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

remove const (#20151)

parent 55c7e6e3
......@@ -475,7 +475,7 @@ void main() {
testWidgets('Can match all semantics flags and actions', (WidgetTester tester) async {
int actions = 0;
int flags = 0;
const CustomSemanticsAction action = const CustomSemanticsAction(label: 'test');
const CustomSemanticsAction action = CustomSemanticsAction(label: 'test');
for (int index in SemanticsAction.values.keys)
actions |= index;
for (int index in SemanticsFlag.values.keys)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment