From 8f257eac29cddcd403127cce8c7a3787905d6c8b Mon Sep 17 00:00:00 2001 From: steache <34166829+steache@users.noreply.github.com> Date: Tue, 23 Jun 2020 23:30:29 +0200 Subject: [PATCH] Fix tests/TestCase.php (#94) Hello, I've run into this small issue where the namespace for BotManTester is wrong. All the tests pass because this is just an annotation but without this change, all Tests->bot show you a reference to non existing "App\BotManTester" :) Hope this makes sence. Thank you for this project. --- tests/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index f6d6fa0..1074751 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -2,8 +2,8 @@ namespace Tests; -use App\BotManTester; use BotMan\BotMan\BotMan; +use BotMan\Studio\Testing\BotManTester; use Illuminate\Foundation\Testing\TestCase as BaseTestCase; abstract class TestCase extends BaseTestCase