diff options
Diffstat (limited to 'grc/tests/test_cpp.py')
-rw-r--r-- | grc/tests/test_cpp.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/grc/tests/test_cpp.py b/grc/tests/test_cpp.py index 52d977a31a..6f585a575f 100644 --- a/grc/tests/test_cpp.py +++ b/grc/tests/test_cpp.py @@ -13,11 +13,13 @@ import tempfile from grc.compiler import main + def test_cpp(capsys): args = Namespace( output=tempfile.gettempdir(), user_lib_dir=False, - grc_files=[path.join(path.dirname(__file__), 'resources', 'test_cpp.grc')], + grc_files=[path.join(path.dirname(__file__), + 'resources', 'test_cpp.grc')], run=True ) |