Skip to content

Commit

Permalink
Modified test for bug #164
Browse files Browse the repository at this point in the history
  • Loading branch information
jzaefferer committed Sep 23, 2006
1 parent c79f069 commit 327bfb8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ajax/ajax.js
Expand Up @@ -223,8 +223,8 @@ jQuery.extend({
* // content[k] = $.trim(this.firstChild.data) || $(this).text();
* content[k] = $(this).text();
* });
* ok( content[0].match(/blabla/), 'Check first tab' );
* ok( content[1].match(/blublu/), 'Check second tab' );
* ok( content[0] && content[0].match(/blabla/), 'Check first tab' );
* ok( content[1] && content[1].match(/blublu/), 'Check second tab' );
* start();
* });
*
Expand Down

0 comments on commit 327bfb8

Please sign in to comment.