File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed
dev/tests/integration/testsuite/Magento/Developer/Console/Command Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change 5
5
*/
6
6
namespace Magento \Developer \Console \Command ;
7
7
8
- use Magento \Framework \Validator \Locale ;
9
8
use Magento \TestFramework \Helper \Bootstrap ;
10
9
use Symfony \Component \Console \Input \InputInterface ;
11
10
use Symfony \Component \Console \Output \OutputInterface ;
17
16
*/
18
17
class SourceThemeDeployCommandTest extends \PHPUnit_Framework_TestCase
19
18
{
20
- const PUB_STATIC_DIRECTORY = 'pub_static ' ;
19
+ const PUB_STATIC_DIRECTORY = 'pub/static ' ;
21
20
22
21
const AREA_TEST_VALUE = 'frontend ' ;
23
22
@@ -27,11 +26,6 @@ class SourceThemeDeployCommandTest extends \PHPUnit_Framework_TestCase
27
26
28
27
const TYPE_TEST_VALUE = 'less ' ;
29
28
30
- /**
31
- * @var Locale|\PHPUnit_Framework_MockObject_MockObject
32
- */
33
- private $ validatorMock ;
34
-
35
29
/**
36
30
* @var SourceThemeDeployCommand
37
31
*/
@@ -54,10 +48,6 @@ protected function setUp()
54
48
{
55
49
global $ installDir ;
56
50
57
- $ this ->validatorMock = $ this ->getMockBuilder (Locale::class)
58
- ->disableOriginalConstructor ()
59
- ->getMock ();
60
-
61
51
$ this ->pubStatic = $ installDir . DIRECTORY_SEPARATOR . self ::PUB_STATIC_DIRECTORY ;
62
52
$ this ->command = Bootstrap::getObjectManager ()->get (SourceThemeDeployCommand::class);
63
53
}
You can’t perform that action at this time.
0 commit comments