Skip to content

Commit

Permalink
Fix: Namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Sep 7, 2022
1 parent 573805e commit 51f7e4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* @see https://github.com/ergebnis/day-one-to-obsidian-converter
*/

namespace Ergebnis\DayOneToObsidianConverter\Test\Double\Domain\DayOneToObsidian\Text;
namespace Ergebnis\DayOneToObsidianConverter\Test\Double\Inside\Domain\DayOneToObsidian\Text;

use Ergebnis\DayOneToObsidianConverter\Inside;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public function testProcessPipesTextThroughComposedTextProcessors(): void
$suffixes = $faker->words();

$textProcessors = \array_map(static function (string $suffix): Inside\Domain\DayOneToObsidian\Text\TextProcessor {
return new Test\Double\Domain\DayOneToObsidian\Text\AppendSuffix($suffix);
return new Test\Double\Inside\Domain\DayOneToObsidian\Text\AppendSuffix($suffix);
}, $suffixes);

$textProcessor = new Inside\Domain\DayOneToObsidian\Text\TextProcessorPipeline(...$textProcessors);
Expand Down

0 comments on commit 51f7e4d

Please sign in to comment.