Skip to content

Commit 799983d

Browse files
committed
fix messed-up paths of an unittest
1 parent 8604fbf commit 799983d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/Examples/EchoBot/Handler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace TelegramBotTest\Methods\examples\EchoBot;
4+
namespace TelegramBotTest\Examples\EchoBot;
55

66
use TelegramBot\Entities\Update;
7-
use TelegramBotTest\Methods\examples\EchoBot\Plugins\MainPlugin;
7+
use TelegramBotTest\Examples\EchoBot\Plugins\MainPlugin;
88

99
class Handler extends \TelegramBot\UpdateHandler
1010
{
@@ -19,4 +19,4 @@ public function __process(Update $update): void
1919
]);
2020
}
2121

22-
}
22+
}

tests/HandlerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use TelegramBot\Plugin;
99
use TelegramBot\Telegram;
1010
use TelegramBot\UpdateHandler;
11-
use TelegramBotTest\Methods\examples\EchoBot\Handler;
11+
use TelegramBotTest\Examples\EchoBot\Handler;
1212

1313
class HandlerTest extends \PHPUnit\Framework\TestCase {
1414

@@ -42,4 +42,4 @@ public function __process(Update $update): void {
4242
));
4343
}
4444

45-
}
45+
}

0 commit comments

Comments
 (0)