Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonpecora committed Aug 2, 2016
1 parent f3bd7d8 commit 0fd22ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions behaviors/site-specific-select.test.js
Expand Up @@ -42,7 +42,7 @@ describe(dirname, function () {
options: options
}]});
label = result.el;
select = label.querySelector('select.editor-select');
select = label.querySelector('select.editor-site-specific-select');
selectOptions = select.querySelectorAll('option');
firstOption = selectOptions[0];

Expand All @@ -67,7 +67,7 @@ describe(dirname, function () {
options: ['foo', 'bar', 'baz']
}]});
label = result.el;
select = label.querySelector('select.editor-select');
select = label.querySelector('select.editor-site-specific-select');
selectOptions = select.querySelectorAll('option');
firstOption = selectOptions[0];

Expand All @@ -89,7 +89,7 @@ describe(dirname, function () {
options: options
}], default: ['baz']});
label = result.el;
select = label.querySelector('select.editor-select');
select = label.querySelector('select.editor-site-specific-select');
selectOptions = select.querySelectorAll('option');
firstOption = selectOptions[0];

Expand Down

0 comments on commit 0fd22ca

Please sign in to comment.