From da8429ffcb28bd7a0edc634bc4e1c53fbbef6b56 Mon Sep 17 00:00:00 2001
From: Sebastian Koslowski <koslowski@kit.edu>
Date: Wed, 28 Sep 2016 09:28:39 +0200
Subject: grc: changes to grcc CLI

---
 grc/tests/test_compiler.py | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

(limited to 'grc/tests/test_compiler.py')

diff --git a/grc/tests/test_compiler.py b/grc/tests/test_compiler.py
index 1ae3db8603..27b5670871 100644
--- a/grc/tests/test_compiler.py
+++ b/grc/tests/test_compiler.py
@@ -25,8 +25,12 @@ from grc.compiler import main
 
 
 def test_compiler(capsys):
-    file_path = path.join(path.dirname(__file__), 'resources', 'test_compiler.grc')
-    args = Namespace(out_dir=tempfile.gettempdir(), grc_files=[file_path], execute=True)
+    args = Namespace(
+        output=tempfile.gettempdir(),
+        user_lib_dir=False,
+        grc_files=[path.join(path.dirname(__file__), 'resources', 'test_compiler.grc')],
+        run=True
+    )
 
     main(args)
 
-- 
cgit v1.2.3