Skip to content

Commit df51b82

Browse files
Fix code style: break long lines in test assertions
Addresses linting warnings about line length exceeding 120 characters. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 464002b commit df51b82

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

tests/Functional/UpstreamCommandsTest.php

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ public function testUpstreamListCommand()
2727
$this->assertArrayHasKey('label', $upstreamInfo, 'An upstream should have "label" field.');
2828
$this->assertArrayHasKey('machine_name', $upstreamInfo, 'An upstream should have "machine_name" field.');
2929
$this->assertArrayHasKey('type', $upstreamInfo, 'An upstream should have "type" field.');
30-
$this->assertArrayNotHasKey('repository_url', $upstreamInfo, 'An upstream should not have "repository_url" field by default.');
30+
$this->assertArrayNotHasKey(
31+
'repository_url',
32+
$upstreamInfo,
33+
'An upstream should not have "repository_url" field by default.'
34+
);
3135
}
3236

3337
/**
@@ -46,7 +50,11 @@ public function testUpstreamListCommandWithRepositoryUrl()
4650
$upstreamInfo = array_shift($upstreamList);
4751
$this->assertArrayHasKey('id', $upstreamInfo, 'An upstream should have "id" field.');
4852
$this->assertArrayHasKey('label', $upstreamInfo, 'An upstream should have "label" field.');
49-
$this->assertArrayHasKey('repository_url', $upstreamInfo, 'An upstream should have "repository_url" field when explicitly requested.');
53+
$this->assertArrayHasKey(
54+
'repository_url',
55+
$upstreamInfo,
56+
'An upstream should have "repository_url" field when explicitly requested.'
57+
);
5058
}
5159

5260
/**

0 commit comments

Comments
 (0)