Skip to content

Commit 57c6845

Browse files
Fix wrong arg used for DDC-only tests
1 parent 5b16ccf commit 57c6845

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

test/over_react/component_declaration/builder_integration_tests/backwards_compatible/stateful_component_integration_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ main() {
2626
expect(() {
2727
StatefulComponentTestState();
2828
}, throwsA(isA<AssertionError>()));
29-
}, testOn: 'ddc');
29+
}, tags: 'ddc');
3030

3131
test('renders a component from end to end, successfully reading state via typed getters', () {
3232
var renderedInstance = render(StatefulComponentTest()());

test/over_react/component_declaration/builder_integration_tests/component2/stateful_component_integration_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ main() {
2525
expect(() {
2626
StatefulComponentTestState();
2727
}, throwsA(isA<AssertionError>()));
28-
}, testOn: 'ddc');
28+
}, tags: 'ddc');
2929

3030
test('renders a component from end to end, successfully reading state via typed getters', () {
3131
var renderedInstance = render(StatefulComponentTest()());

test/over_react/component_declaration/builder_integration_tests/stateful_component_integration_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ main() {
2626
expect(() {
2727
StatefulComponentTestState();
2828
}, throwsA(isA<AssertionError>()));
29-
}, testOn: 'ddc');
29+
}, tags: 'ddc');
3030

3131
test('renders a component from end to end, successfully reading state via typed getters', () {
3232
var renderedInstance = render(StatefulComponentTest()());

test/over_react/component_declaration/non_null_safe_builder_integration_tests/backwards_compatible/stateful_component_integration_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ main() {
2929
expect(() {
3030
StatefulComponentTestState();
3131
}, throwsA(isA<AssertionError>()));
32-
}, testOn: 'ddc');
32+
}, tags: 'ddc');
3333

3434
test('renders a component from end to end, successfully reading state via typed getters', () {
3535
var renderedInstance = render(StatefulComponentTest()());

test/over_react/component_declaration/non_null_safe_builder_integration_tests/component2/stateful_component_integration_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ main() {
2828
expect(() {
2929
StatefulComponentTestState();
3030
}, throwsA(isA<AssertionError>()));
31-
}, testOn: 'ddc');
31+
}, tags: 'ddc');
3232

3333
test('renders a component from end to end, successfully reading state via typed getters', () {
3434
var renderedInstance = render(StatefulComponentTest()());

test/over_react/component_declaration/non_null_safe_builder_integration_tests/stateful_component_integration_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ main() {
2929
expect(() {
3030
StatefulComponentTestState();
3131
}, throwsA(isA<AssertionError>()));
32-
}, testOn: 'ddc');
32+
}, tags: 'ddc');
3333

3434
test('renders a component from end to end, successfully reading state via typed getters', () {
3535
var renderedInstance = render(StatefulComponentTest()());

0 commit comments

Comments
 (0)