diff --git a/modules/swagger-codegen/src/main/resources/Javascript/model_test.mustache b/modules/swagger-codegen/src/main/resources/Javascript/model_test.mustache index 2b43b338812..fc856b01043 100644 --- a/modules/swagger-codegen/src/main/resources/Javascript/model_test.mustache +++ b/modules/swagger-codegen/src/main/resources/Javascript/model_test.mustache @@ -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}}); }); @@ -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(); });