Skip to content

Commit

Permalink
Fixes tests
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Jan 30, 2024
1 parent a8441dd commit 1c00443
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function testAddDeclaration(): void

$this->assertSame(
['foo' => ['bar' => 'baz']],
$configs->getConfig(ScaffolderConfig::CONFIG)['defaults']['declarations']
$configs->getConfig(ScaffolderConfig::CONFIG)['defaults']['declarations'],
);
}

Expand Down Expand Up @@ -73,7 +73,7 @@ public function testDefaultConfig(): void
],
Declaration\MiddlewareDeclaration::TYPE => [
'namespace' => 'Middleware',
'postfix' => '',
'postfix' => 'Middleware',
'class' => Declaration\MiddlewareDeclaration::class,
],
Declaration\CommandDeclaration::TYPE => [
Expand All @@ -87,7 +87,7 @@ public function testDefaultConfig(): void
'class' => Declaration\JobHandlerDeclaration::class,
],
],
]
],
], $config);
}
}

0 comments on commit 1c00443

Please sign in to comment.