Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.

Fixed: Missing parentheses in Ch. 14 - QUnit Sample Code #428

Merged
merged 1 commit into from
May 3, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chapters/12-qunit.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ module( 'StoreList sanity check', {
this.list.add(new Store({ name: 'Costcutter' }));
this.list.add(new Store({ name: 'Target' }));
this.list.add(new Store({ name: 'Walmart' }));
this.list.add(new Store({ name: 'Barnes & Noble' });
this.list.add(new Store({ name: 'Barnes & Noble' }));
},
teardown: function() {
window.errors = null;
Expand Down