From a2de0ad9eb887af14453acb18d0f3a8a5496b938 Mon Sep 17 00:00:00 2001 From: segayuu Date: Tue, 27 Aug 2019 12:50:47 +0900 Subject: [PATCH] fix typo --- test/scripts/schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/scripts/schema.js b/test/scripts/schema.js index 006ba295..22f24735 100644 --- a/test/scripts/schema.js +++ b/test/scripts/schema.js @@ -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!'); }); });