Skip to content

Commit

Permalink
dom.spec.js: missing namespace again :-(
Browse files Browse the repository at this point in the history
  • Loading branch information
hackerwins committed May 20, 2013
1 parent d3038f3 commit 9ef8bf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/dom.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test('dom.ancestor', function() {
equal(dom.ancestor(elB, dom.isU), null, 'find ancestor U: null');
});

test('listAncestor', function() {
test('dom.listAncestor', function() {
var $cont, $b, $u, $s, $i;

$cont = $('<div><i><s><u><b>b</b></u></s></i></div>'); //busi
Expand All @@ -34,7 +34,7 @@ test('listAncestor', function() {

});

test('commonAncestor', function() {
test('dom.commonAncestor', function() {
var $cont, $b, elB;

$cont = $('<div><span><b>b</b><u>u</u></span><span><s>s</s><i>i</i></span></div>');
Expand Down

0 comments on commit 9ef8bf7

Please sign in to comment.