Blob Blame History Raw
diff --git a/test/global.coffee b/test/global.coffee
index a5bb19c..07954f5 100644
--- a/test/global.coffee
+++ b/test/global.coffee
@@ -28,7 +28,7 @@ test '.getCloseMatches', ->
  getCloseMatches('appel', ['ape', 'apple', 'peach', 'puppy'])
    .should.eql ['apple', 'ape']
  
- KEYWORDS = require('coffee-script').RESERVED
+ KEYWORDS = ['case', 'default', 'function', 'var', 'void', 'with', 'const', 'let', 'enum', 'export', 'import', 'native', 'implements', 'interface', 'package', 'private', 'protected', 'public', 'static', 'true', 'false', 'null', 'this', 'new', 'delete', 'typeof', 'in', 'instanceof', 'return', 'throw', 'break', 'continue', 'debugger', 'yield', 'if', 'else', 'switch', 'for', 'while', 'do', 'try', 'catch', 'finally', 'class', 'extends', 'super', 'undefined', 'then', 'unless', 'until', 'loop', 'of', 'by', 'when', 'arguments', 'eval', 'yield*']
  getCloseMatches('wheel', KEYWORDS).should.eql ['when', 'while']
  getCloseMatches('accost', KEYWORDS).should.eql ['const']