aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit/dom
diff options
context:
space:
mode:
authorJulien Déramond <[email protected]>2022-07-04 13:12:10 +0200
committerGitHub <[email protected]>2022-07-04 14:12:10 +0300
commitc1813ef2bc2a398e5a9bcdd398608f8a021574e3 (patch)
tree49f15607cd0d0fc2c2fb9a1926096aa575d93ace /js/tests/unit/dom
parenta13f432db4c6fe52a5e748ace6357848cb2ed700 (diff)
downloadbootstrap-c1813ef2bc2a398e5a9bcdd398608f8a021574e3.tar.xz
bootstrap-c1813ef2bc2a398e5a9bcdd398608f8a021574e3.zip
ref(tests): Minor fix to use self-closing input HTML tag (#36667)
Diffstat (limited to 'js/tests/unit/dom')
-rw-r--r--js/tests/unit/dom/selector-engine.spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tests/unit/dom/selector-engine.spec.js b/js/tests/unit/dom/selector-engine.spec.js
index 38eb3be54..901aa0e3a 100644
--- a/js/tests/unit/dom/selector-engine.spec.js
+++ b/js/tests/unit/dom/selector-engine.spec.js
@@ -166,7 +166,7 @@ describe('SelectorEngine', () => {
'<span>lorem</span>',
'<a>lorem</a>',
'<button>lorem</button>',
- '<input />',
+ '<input>',
'<textarea></textarea>',
'<select></select>',
'<details>lorem</details>'