diff options
| author | Shubh1815 <shubhparmar14@gmail.com> | 2021-11-15 19:57:11 +0530 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2021-11-25 07:57:19 +0100 |
| commit | 51c24d8799fb09f04d0a5deb713eaeceb20d15c7 (patch) | |
| tree | 0c45b9d61e520c4f5040087878489217392d175a /js_tests | |
| parent | b8c0b22f2f0f8ce664642332d6d872f300c662b4 (diff) | |
Fixed #33024 -- Fixed height of admin selector boxes in collapsed fieldset.
Thanks Tom Carrick for the review.
Diffstat (limited to 'js_tests')
| -rw-r--r-- | js_tests/admin/SelectFilter2.test.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/js_tests/admin/SelectFilter2.test.js b/js_tests/admin/SelectFilter2.test.js index a41d8f189d..f65965c4fb 100644 --- a/js_tests/admin/SelectFilter2.test.js +++ b/js_tests/admin/SelectFilter2.test.js @@ -10,10 +10,6 @@ QUnit.test('init', function(assert) { SelectFilter.init('id', 'things', 0); assert.equal($('.selector-available h2').text().trim(), "Available things"); assert.equal($('.selector-chosen h2').text().trim(), "Chosen things"); - assert.equal( - $('.selector-available select').outerHeight() + $('.selector-filter').outerHeight(), - $('.selector-chosen select').height() - ); assert.equal($('.selector-chosen select')[0].getAttribute('multiple'), ''); assert.equal($('.selector-chooseall').text(), "Choose all"); assert.equal($('.selector-add').text(), "Choose"); |
