We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7bf12df + d4146d6 commit 24736baCopy full SHA for 24736ba
src/Codeception/Test/Loader/Gherkin.php
@@ -68,7 +68,7 @@ protected function fetchGherkinSteps()
68
69
if (empty($this->steps) && empty($contexts['default']) && $this->settings['actor']) { // if no context is set, actor to be a context
70
$actorContext = $this->settings['namespace']
71
- ? rtrim($this->settings['namespace'] . '\\' . $this->settings['actor'], '\\')
+ ? rtrim($this->settings['namespace'], '\\') . '\\' . rtrim($this->settings['actor'], '\\')
72
: $this->settings['actor'];
73
if ($actorContext) {
74
$contexts['default'][] = $actorContext;
0 commit comments