Fix typos in Javascript test clients (#7642)

Looks like this did not get propagated to these other JS clients from the original at 90859575eb
This commit is contained in:
Phillip Verheyden
2020-10-09 20:15:14 -06:00
committed by GitHub
parent 86fd8b1aa4
commit 214d81553f
2 changed files with 2 additions and 2 deletions

View File

@@ -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}});
});

View File

@@ -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();
});