summary refs log tree commit diff stats
path: root/testc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'testc.lua')
-rw-r--r--testc.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/testc.lua b/testc.lua
index eb864e1..e9a793c 100644
--- a/testc.lua
+++ b/testc.lua
@@ -21,13 +21,13 @@ load = function(target, ...)
     end
 end
 
-local cratera = require "dirtycratera"
+local cratera = require "cratera"
 
 -- first test: does it handle empty files properly?
 assert(printr(cratera.load("")))()
 
 -- second test: does it handle lua code properly?
-assert(printr(cratera.load(io.open("dirtycompiler.lua"):read("*a"))))()
+assert(printr(cratera.load(io.open("cratera/compiler.lua"):read("*a"))))()
 
 print("-----------------------------------------------------------------------------------------------------------------------")
 print(table.concat(collect))