From 1b7d0a2a34cd1f74d89ac739b31fc18c6da2eed2 Mon Sep 17 00:00:00 2001 From: Gintautas Miselis Date: Tue, 29 Dec 2020 18:56:33 +0200 Subject: [PATCH] Replace Codeception\Util\Stub with Codeception\Stub in tests Because Codeception\Util\Stub will be removed from Codeception 5.0 --- tests/unit/Codeception/Module/AssertsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/Codeception/Module/AssertsTest.php b/tests/unit/Codeception/Module/AssertsTest.php index a9421cb..cb00cbe 100644 --- a/tests/unit/Codeception/Module/AssertsTest.php +++ b/tests/unit/Codeception/Module/AssertsTest.php @@ -5,7 +5,7 @@ use Codeception\Lib\ModuleContainer; use Codeception\Module\Asserts; use Codeception\PHPUnit\TestCase; -use Codeception\Util\Stub; +use Codeception\Stub; use Exception; use PHPUnit\Framework\AssertionFailedError; use RuntimeException;