Skip to content

Commit

Permalink
Fixing variable name typo (instane -> instance) (#7353)
Browse files Browse the repository at this point in the history
  • Loading branch information
marians authored and wing328 committed Jan 14, 2018
1 parent fb73b8c commit 9085957
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
describe('{{classname}}', function() {
it('should create an instance of {{classname}}', function() {
// uncomment below and update the code to test {{classname}}
//var instane = new {{moduleName}}.{{classname}}();
//var instance = new {{moduleName}}.{{classname}}();
//expect(instance).to.be.a({{moduleName}}.{{classname}});
});

Expand All @@ -53,7 +53,7 @@
{{#vars}}
it('should have the property {{name}} (base name: "{{baseName}}")', function() {
// uncomment below and update the code to test the property {{name}}
//var instane = new {{moduleName}}.{{classname}}();
//var instance = new {{moduleName}}.{{classname}}();
//expect(instance).to.be();
});

Expand Down

0 comments on commit 9085957

Please sign in to comment.