Skip to content

Commit e7d9545

Browse files
author
Jamie Hoover ⚔
committed
Test Minor Cleanup
Removes unneeded closing slash from testing specs.
1 parent 07ab35a commit e7d9545

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/js/spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ $versions(jQueryVersions).load(scriptPath).execute(function ($, jQuery, version)
272272
value: iconName
273273
});
274274
}
275-
$exampleIcon = $('<span/>', {
275+
$exampleIcon = $('<span>', {
276276
'class': 'ninjaui-example-icon'
277277
}).append($icon, ' ', iconName).appendTo($exampleIcons);
278278

@@ -295,7 +295,7 @@ $versions(jQueryVersions).load(scriptPath).execute(function ($, jQuery, version)
295295

296296
describe('$.ninja.menu()', function () {
297297
var
298-
$message = $('<span/>'),
298+
$message = $('<span>'),
299299
please = function () {
300300
$message.html(':( Try again.');
301301
},
@@ -347,7 +347,7 @@ $versions(jQueryVersions).load(scriptPath).execute(function ($, jQuery, version)
347347

348348
describe('$.ninja.rating()', function () {
349349
var
350-
$message = $('<span/>'),
350+
$message = $('<span>'),
351351
$rating = $.ninja.rating({
352352
average: 3
353353
}).select(function (event) {
@@ -391,7 +391,7 @@ $versions(jQueryVersions).load(scriptPath).execute(function ($, jQuery, version)
391391

392392
describe('$.ninja.tabs()', function () {
393393
var
394-
$message = $('<span/>'),
394+
$message = $('<span>'),
395395
poorly = function () {
396396
$message.html('You have chosen... poorly.');
397397
},

0 commit comments

Comments
 (0)