]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Corrected grammatical error in test descriptions (#30150)
authoryonikohen <58581019+yonikohen@users.noreply.github.com>
Mon, 10 Feb 2020 07:35:13 +0000 (02:35 -0500)
committerGitHub <noreply@github.com>
Mon, 10 Feb 2020 07:35:13 +0000 (09:35 +0200)
"without instantiate it" should be "without instantiating it"

js/tests/unit/alert.spec.js

index 32f11b618850853ba5b1ce397d715af109bd086b..8a3d33dcf843d5e86682cdfb115ee487c5bf4ea8 100644 (file)
@@ -20,7 +20,7 @@ describe('Alert', () => {
   })
 
   describe('data-api', () => {
-    it('should close an alert without instantiate it manually', () => {
+    it('should close an alert without instantiating it manually', () => {
       fixtureEl.innerHTML = [
         '<div class="alert">',
         '  <button type="button" data-dismiss="alert">x</button>',
@@ -33,7 +33,7 @@ describe('Alert', () => {
       expect(makeArray(document.querySelectorAll('.alert')).length).toEqual(0)
     })
 
-    it('should close an alert without instantiate it manually with the parent selector', () => {
+    it('should close an alert without instantiating it manually with the parent selector', () => {
       fixtureEl.innerHTML = [
         '<div class="alert">',
         '  <button type="button" data-target=".alert" data-dismiss="alert">x</button>',