File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
dev/tests/integration/testsuite/Magento/Framework/Data/Form/Element Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,15 @@ class DateTest extends \PHPUnit\Framework\TestCase
17
17
/**
18
18
* @var ElementFactory
19
19
*/
20
- protected $ _elementFactory ;
20
+ private $ elementFactory ;
21
21
22
22
/**
23
23
* @inheritdoc
24
24
*/
25
25
protected function setUp ()
26
26
{
27
27
$ objectManager = Bootstrap::getObjectManager ();
28
- $ this ->_elementFactory = $ objectManager ->create (ElementFactory::class);
28
+ $ this ->elementFactory = $ objectManager ->create (ElementFactory::class);
29
29
}
30
30
31
31
/**
@@ -39,7 +39,7 @@ protected function setUp()
39
39
public function testGetValue (array $ data , string $ expect ): void
40
40
{
41
41
/** @var $date Date */
42
- $ date = $ this ->_elementFactory ->create (Date::class, $ data );
42
+ $ date = $ this ->elementFactory ->create (Date::class, $ data );
43
43
$ this ->assertEquals ($ expect , $ date ->getValue ());
44
44
}
45
45
You can’t perform that action at this time.
0 commit comments