diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-03-26 21:59:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-26 21:59:32 +0100 |
| commit | 0d92428d77fafff373e05dd5a6cdb62bd1dfbda0 (patch) | |
| tree | 5ab5db4804f8fefe016d0465497ef566a249ee51 /js_tests | |
| parent | d5c19f9b327fccc1f707e10de648fe9d4cdacb9b (diff) | |
Refs #34619 -- Corrected selector description in the admin.
Diffstat (limited to 'js_tests')
| -rw-r--r-- | js_tests/admin/SelectFilter2.test.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js_tests/admin/SelectFilter2.test.js b/js_tests/admin/SelectFilter2.test.js index af227c0c1e..8c1480d2a6 100644 --- a/js_tests/admin/SelectFilter2.test.js +++ b/js_tests/admin/SelectFilter2.test.js @@ -19,7 +19,7 @@ QUnit.test('init', function(assert) { assert.equal($('.selector-chooseall').prop("tagName"), "BUTTON"); assert.equal($('.selector-add').text(), "Choose selected things"); assert.equal($('.selector-add').prop("tagName"), "BUTTON"); - assert.equal($('.selector-remove').text(), "Remove selected chosen things"); + assert.equal($('.selector-remove').text(), "Remove selected things"); assert.equal($('.selector-remove').prop("tagName"), "BUTTON"); assert.equal($('.selector-clearall').text(), "Remove all things"); assert.equal($('.selector-clearall').prop("tagName"), "BUTTON"); |
