From cfd533e215b6bbc2708fd39406111f2ae3defacf Mon Sep 17 00:00:00 2001 From: Keal Jones <41018730+kealjones-wk@users.noreply.github.com> Date: Mon, 14 Aug 2023 10:32:02 -0700 Subject: [PATCH] Update test/over_react/component_declaration/builder_integration_tests/new_boilerplate/function_component_test.dart Co-authored-by: Greg Littlefield --- .../new_boilerplate/function_component_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/function_component_test.dart b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/function_component_test.dart index ac2dd4993..4ef96807a 100644 --- a/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/function_component_test.dart +++ b/test/over_react/component_declaration/builder_integration_tests/new_boilerplate/function_component_test.dart @@ -411,7 +411,7 @@ testPropsToForward({UiFactory factory, bool modifyProps = false}) { test('which throws an error when not providing an exclude argument and the props class is NOT a mixin and `domOnly` is NOT `true`', () { expect(() => _propsToForward(exclude: null, props: initialProps, factory: factory, modifyProps: modifyProps), - throwsA(isA())); + throwsA(isA().having('toString value', (e) => e.toString(), contains('If this is not a props mixin, you need to specify its mixins as the second argument'))); }, tags: 'ddc'); }); }