Skip to content

Commit 773c20c

Browse files
committed
static tests fix
1 parent a246993 commit 773c20c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

app/code/Magento/MediaGalleryUi/Model/Directories/GetFolderTree.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ private function getDirectories(): array
8787

8888
$pathArray = explode('/', $path);
8989
$displayName = strlen(end($pathArray)) > self::NAME_LENGTH ?
90-
substr(end($pathArray), 0 , self::NAME_LENGTH) . "..." :
90+
substr(end($pathArray), 0, self::NAME_LENGTH) . "..." :
9191
end($pathArray);
9292
$directories[] = [
9393
'data' => count($pathArray) > 0 ? $displayName : $path,

dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/url-filter-applier.test.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@
55

66
/*eslint max-nested-callbacks: 0*/
77
define([
8-
'Magento_Ui/js/grid/url-filter-applier',
9-
'jquery'
10-
], function (UrlFilterApplier, $) {
8+
'Magento_Ui/js/grid/url-filter-applier'
9+
], function (UrlFilterApplier) {
1110
'use strict';
1211

1312
describe('Magento_Ui/js/grid/url-filter-applier', function () {

0 commit comments

Comments
 (0)