Skip to content

Commit 9a13a35

Browse files
authored
Use the word bringup not flaky to describe bringup: true. (#4681)
![image](https://github.com/user-attachments/assets/fd5d6e28-2e35-4f33-ad01-423b3fd2d8d2)
1 parent b3268c2 commit 9a13a35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dashboard/lib/widgets/task_overlay.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ class TaskOverlayContents extends StatelessWidget {
278278
final summaryText = [
279279
'Attempts: ${task.attempts}',
280280
_describeTaskRunning(task, now: now!),
281-
if (task.isBringup) 'Flaky: ${task.isBringup}',
281+
if (task.isBringup) 'Bringup',
282282
].join('\n');
283283

284284
return Card(

dashboard/test/widgets/task_overlay_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ void main() {
110110
'Attempts: 3\n'
111111
'Queued for 2 minutes\n'
112112
'Ran for 48 minutes\n'
113-
'Flaky: true';
113+
'Bringup';
114114

115115
await tester.pumpWidget(
116116
Now.fixed(

0 commit comments

Comments
 (0)