Skip to content

Commit e28443f

Browse files
Revert "Fix nonexistent test tag"
Not sure what was going on here, but "ddc" was definitely correct This reverts commit 5d2d820.
1 parent 1bd6c52 commit e28443f

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: 'dartdevc');
29+
}, testOn: '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: 'dartdevc');
28+
}, testOn: '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: 'dartdevc');
29+
}, testOn: '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: 'dartdevc');
32+
}, testOn: '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: 'dartdevc');
31+
}, testOn: '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: 'dartdevc');
32+
}, testOn: '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)