diff --git a/dev/integration_tests/platform_interaction/lib/src/test_step.dart b/dev/integration_tests/platform_interaction/lib/src/test_step.dart index a75fd70197..4bd004b5fe 100644 --- a/dev/integration_tests/platform_interaction/lib/src/test_step.dart +++ b/dev/integration_tests/platform_interaction/lib/src/test_step.dart @@ -37,7 +37,8 @@ class TestStepResult { final String description; final TestStatus status; - static const TextStyle bold = TextStyle(fontWeight: FontWeight.bold); + static const TextStyle normal = TextStyle(height: 1.0); + static const TextStyle bold = TextStyle(fontWeight: FontWeight.bold, height: 1.0); static const TestStepResult complete = TestStepResult( 'Test complete', nothing, @@ -49,8 +50,8 @@ class TestStepResult { crossAxisAlignment: CrossAxisAlignment.start, children: [ Text('Step: $name', style: bold), - Text(description), - const Text(' '), + Text(description, style: normal), + const Text(' ', style: normal), Text( status.toString().substring('TestStatus.'.length), key: ValueKey(