Updates override of SemanticsUpdateBuilderSpy to enable soft transition (#83434)
diff --git a/packages/flutter/test/semantics/semantics_update_test.dart b/packages/flutter/test/semantics/semantics_update_test.dart index a9a7062..b4f9d68 100644 --- a/packages/flutter/test/semantics/semantics_update_test.dart +++ b/packages/flutter/test/semantics/semantics_update_test.dart
@@ -114,10 +114,18 @@ required double thickness, required Rect rect, required String label, - required String hint, + // TODO(chunhtai): change the Object? to List<StringAttribute> when engine + // pr lands: https://github.com/flutter/engine/pull/25373. + // https://github.com/flutter/flutter/issues/79318. + Object? labelAttributes, required String value, + Object? valueAttributes, required String increasedValue, + Object? increasedValueAttributes, required String decreasedValue, + Object? decreasedValueAttributes, + required String hint, + Object? hintAttributes, TextDirection? textDirection, required Float64List transform, required Int32List childrenInTraversalOrder,