File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/code/Magento/Customer/Test/Unit/Model/Account Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8
8
9
9
namespace Magento \Customer \Test \Unit \Model \Account ;
10
10
11
- use Magento \Customer \Api \ RedirectCookieManagerInterface ;
11
+ use Magento \Customer \Model \ RedirectCookieManager ;
12
12
use Magento \Customer \Model \Account \Redirect ;
13
13
use Magento \Customer \Model \Url as CustomerUrl ;
14
14
use Magento \Framework \Controller \ResultFactory ;
@@ -82,7 +82,7 @@ class RedirectTest extends \PHPUnit\Framework\TestCase
82
82
protected $ resultFactory ;
83
83
84
84
/**
85
- * @var RedirectCookieManagerInterface | \PHPUnit_Framework_MockObject_MockObject
85
+ * @var RedirectCookieManager | \PHPUnit_Framework_MockObject_MockObject
86
86
*/
87
87
protected $ redirectCookieManager ;
88
88
@@ -147,7 +147,7 @@ protected function setUp()
147
147
->disableOriginalConstructor ()
148
148
->getMock ();
149
149
150
- $ this ->redirectCookieManager = $ this ->getMockBuilder (RedirectCookieManagerInterface ::class)
150
+ $ this ->redirectCookieManager = $ this ->getMockBuilder (RedirectCookieManager ::class)
151
151
->disableOriginalConstructor ()
152
152
->getMock ();
153
153
You can’t perform that action at this time.
0 commit comments