From 9971e0b2a01929a1d8adcc72d5bc6f6c21cb708a Mon Sep 17 00:00:00 2001 From: Colin Jones Date: Mon, 28 Nov 2011 19:18:55 -0600 Subject: [PATCH] Not sure why these hoops felt necessary at the time, but they're not now --- script/run.clj | 6 ++---- script/test.clj | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/script/run.clj b/script/run.clj index 7d38877..5855b8e 100644 --- a/script/run.clj +++ b/script/run.clj @@ -1,4 +1,2 @@ -(load "koan_engine/runner") -(do - (in-ns 'koan-engine.runner) - (exec "run")) +(require 'koan-engine.runner) +(koan-engine.runner/exec "run") diff --git a/script/test.clj b/script/test.clj index cf0c3a3..ffac31b 100644 --- a/script/test.clj +++ b/script/test.clj @@ -1,4 +1,2 @@ -(load "koan_engine/runner") -(do - (in-ns 'koan-engine.runner) - (exec "test")) +(require 'koan-engine.runner) +(koan-engine.runner/exec "test")