Skip to content

Commit 182f340

Browse files
Fix ECS line length on V2OperatorMetricsTest run-summary missing-age assertion
Collapse the assertSame call for max_missing_run_age_ms onto a single line so the LineLengthFixer rule passes.
1 parent 3711c3b commit 182f340

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

tests/Feature/V2/V2OperatorMetricsTest.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1701,10 +1701,7 @@ public function testSnapshotSurfacesMissingRunSummaryProjectionAgeFromOldestMiss
17011701
$expectedOldestMissingAt,
17021702
$snapshot['projections']['run_summaries']['oldest_missing_run_started_at'],
17031703
);
1704-
$this->assertSame(
1705-
240 * 1000,
1706-
$snapshot['projections']['run_summaries']['max_missing_run_age_ms'],
1707-
);
1704+
$this->assertSame(240 * 1000, $snapshot['projections']['run_summaries']['max_missing_run_age_ms']);
17081705
}
17091706

17101707
public function testSnapshotReportsMissingRunSummaryProjectionAgeAsZeroWhenNoRunsAreMissing(): void

0 commit comments

Comments
 (0)