|
|
@@ -160,7 +160,7 @@ class ModuleTest extends TestCase
|
|
|
$this->parameterBag->method('get')->with('opentalent.products')->willReturn(
|
|
|
[
|
|
|
'artist' => ['modules' => ['foo']],
|
|
|
- 'artist_premium' => ['extend' => 'artist', 'modules' => ['bar']],
|
|
|
+ 'artist-premium' => ['extend' => 'artist', 'modules' => ['bar']],
|
|
|
]
|
|
|
);
|
|
|
|
|
|
@@ -184,7 +184,7 @@ class ModuleTest extends TestCase
|
|
|
);
|
|
|
|
|
|
$this->expectException(AccessDeniedHttpException::class);
|
|
|
- $this->expectExceptionMessage('The product artist_premium does not exist !');
|
|
|
+ $this->expectExceptionMessage('The product artist-premium does not exist !');
|
|
|
|
|
|
$module->getModulesByProductConfiguration(SettingsProductEnum::ARTIST_PREMIUM);
|
|
|
}
|