Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tj committed Nov 16, 2011
1 parent f7fc50a commit 804d517
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/interfaces/bdd.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ module.exports = function(suite){
*/

context.describe = function(title, fn){
var suite = suite = new Suite(title);
var suite = new Suite(title);
suites[0].addSuite(suite);
suites.unshift(suite);
fn();
Expand Down
2 changes: 1 addition & 1 deletion lib/interfaces/tdd.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ module.exports = function(suite){
*/

context.suite = function(title, fn){
var suite = suite = new Suite(title);
var suite = new Suite(title);
suites[0].addSuite(suite);
suites.unshift(suite);
fn();
Expand Down

0 comments on commit 804d517

Please sign in to comment.