File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/code/Magento/Ui/Test/Unit/Controller/Adminhtml/Bookmark Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ class SaveTest extends TestCase
61
61
/**
62
62
* @var Save
63
63
*/
64
- private $ unit ;
64
+ private $ model ;
65
65
66
66
/**
67
67
* @inheritDoc
@@ -76,7 +76,7 @@ protected function setUp(): void
76
76
$ this ->userContext = $ this ->createMock (UserContextInterface::class);
77
77
$ this ->jsonDecoder = $ this ->createMock (DecoderInterface::class);
78
78
79
- $ this ->unit = new Save (
79
+ $ this ->model = new Save (
80
80
$ this ->context ,
81
81
$ this ->factory ,
82
82
$ this ->bookmarkRepository ,
@@ -109,6 +109,6 @@ public function testExecuteWontBeExecutedWhenNoUserIdInContext(): void
109
109
$ this ->userContext ->method ('getUserId ' )
110
110
->willReturn (null );
111
111
112
- $ this ->unit ->execute ();
112
+ $ this ->model ->execute ();
113
113
}
114
114
}
You can’t perform that action at this time.
0 commit comments