Skip to content

Commit 44aa960

Browse files
authored
Update select.test.js
Changed file to re-run Travis test
1 parent 913122a commit 44aa960

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

dev/tests/js/jasmine/tests/app/code/Magento/Ui/base/js/grid/columns/select.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ define([
3838
expect(select.getLabel({selectField : '2'})).toBe('');
3939
});
4040

41-
it('get label for existed value', function () {
41+
it('get label for existing value', function () {
4242
select.options = opts;
4343
expect(select.getLabel({selectField : '2'})).toBe('b');
4444
});
4545

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 () {
4747
select.options = optsAsObject;
4848
expect(select.getLabel({selectField : '3'})).toBe('c');
4949
});
5050

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 () {
5252
select.options = optsAsObject;
5353
expect(select.getLabel({selectField : '1,3'})).toBe('a, c');
5454
});

0 commit comments

Comments
 (0)