aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_main.py
diff options
context:
space:
mode:
authorGravatar Ionite <[email protected]>2022-11-15 23:18:57 -0500
committerGravatar Ionite <[email protected]>2022-11-15 23:18:57 -0500
commit1c366c64f71d330fff2e23d669e588005ed9fd34 (patch)
tree4a18d4f766f58a85fbd13f6783bf36be056f35f1 /tests/test_main.py
parentImplement usage of tempfs (diff)
Remove -c from unit tests
Diffstat (limited to 'tests/test_main.py')
-rw-r--r--tests/test_main.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_main.py b/tests/test_main.py
index 77b3130..1e6cbc5 100644
--- a/tests/test_main.py
+++ b/tests/test_main.py
@@ -12,10 +12,10 @@ import snekbox.__main__ as snekbox_main
class ArgParseTests(unittest.TestCase):
def test_parse_args(self):
subtests = (
- (["", "code"], Namespace(code="code", nsjail_args=[], py_args=["-c"])),
+ (["", "code"], Namespace(code="code", nsjail_args=[], py_args=[])),
(
["", "code", "--time_limit", "0"],
- Namespace(code="code", nsjail_args=["--time_limit", "0"], py_args=["-c"]),
+ Namespace(code="code", nsjail_args=["--time_limit", "0"], py_args=[]),
),
(
["", "code", "---", "-m", "timeit"],