Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
segayuu committed Aug 27, 2019
1 parent c60576b commit a2de0ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/scripts/schema.js
Expand Up @@ -149,6 +149,6 @@ describe('Schema', () => {
(() => schema.static()).should.throw(TypeError, 'Method name is required!');

// without function
(() => schema.sttic('wtf')).should.throw(TypeError, 'Static method must be a function!');
(() => schema.static('wtf')).should.throw(TypeError, 'Static method must be a function!');
});
});

0 comments on commit a2de0ad

Please sign in to comment.