Skip to content
This repository has been archived by the owner on Oct 18, 2024. It is now read-only.

Commit

Permalink
Make code quality tools happy
Browse files Browse the repository at this point in the history
  • Loading branch information
T2L committed Jul 7, 2022
1 parent ccaf2a9 commit 96be356
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tests/Unit/Config/ConfigTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public function writeConfigToTheFileDataProvider(): array {
return [
[
"# One\none:\n # Two\n two: two",
"# One\none:\n # Two\n two: 2",
"# One\none:\n # Two\n two: 2\n",
[
'one' => [
'two' => 2,
Expand All @@ -170,14 +170,14 @@ public function writeConfigToTheFileDataProvider(): array {
],
[
"# One\none:\n # Two\n two: two",
"# One\none: one",
"# One\none: one\n",
[
'one' => 'one',
],
],
[
"# One\none:\n # Two\n two: two",
"# One\none:\n # Two\n two: two\nthree: 3",
"# One\none:\n # Two\n two: two\nthree: 3\n",
[
'one' => [
'two' => 'two',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* @covers \Lemberg\Draft\Environment\Config\Update\Step\AbstractUpdateStep
* @covers \Lemberg\Draft\Environment\Config\Update\Step\DefaultConfigUpdate30600
*/
class DefaultConfigUpdate30600Test extends TestCase {
final class DefaultConfigUpdate30600Test extends TestCase {

/**
* @var \Composer\Composer
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ final public function updateDataProvider(): array {
# Comment Z
- z
aa: 34
EOT;

$configA = [
Expand Down Expand Up @@ -252,6 +253,7 @@ final public function updateDataProvider(): array {
bb:
cc: dd
new: new
EOT;

return [
Expand Down

0 comments on commit 96be356

Please sign in to comment.