File tree 1 file changed +3
-3
lines changed
dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -38,17 +38,17 @@ define([
38
38
expect ( select . getLabel ( { selectField : '2' } ) ) . toBe ( '' ) ;
39
39
} ) ;
40
40
41
- it ( 'get label for existed value' , function ( ) {
41
+ it ( 'get label for existing value' , function ( ) {
42
42
select . options = opts ;
43
43
expect ( select . getLabel ( { selectField : '2' } ) ) . toBe ( 'b' ) ;
44
44
} ) ;
45
45
46
- it ( 'get label for existed value in case the options are initialized as an object' , function ( ) {
46
+ it ( 'get label for existing value in case the options are initialized as an object' , function ( ) {
47
47
select . options = optsAsObject ;
48
48
expect ( select . getLabel ( { selectField : '3' } ) ) . toBe ( 'c' ) ;
49
49
} ) ;
50
50
51
- it ( 'get labels for existed values in case the options are initialized as an object' , function ( ) {
51
+ it ( 'get labels for existing values in case the options are initialized as an object' , function ( ) {
52
52
select . options = optsAsObject ;
53
53
expect ( select . getLabel ( { selectField : '1,3' } ) ) . toBe ( 'a, c' ) ;
54
54
} ) ;
You can’t perform that action at this time.
0 commit comments