From 85c1fa8b365e25c2d79c8175da6d2bef972e08f2 Mon Sep 17 00:00:00 2001 From: David Hoese <david.hoese@ssec.wisc.edu> Date: Sun, 5 Jul 2020 17:54:32 -0500 Subject: [PATCH] Edit call to hello C test --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 1fb7bc7..704353e 100644 --- a/test.py +++ b/test.py @@ -4,7 +4,7 @@ def test_hello_world_c(): import subprocess - bytes_out = subprocess.check_output(['hello']) + bytes_out = subprocess.check_output(['./hello']) assert bytes_out == b'Hello, World!\n' -- GitLab