diff options
author | 2023-09-16 12:46:44 -0700 | |
---|---|---|
committer | 2023-10-27 11:59:01 -0700 | |
commit | 64ca95ceeb6f3c919ef7c1c607369e79e32b663c (patch) | |
tree | 1dcce7db689ff11eb427480c9cb492a19fde7d0e /tests/api | |
parent | Refactor creation of NsJail args list into a separate function (diff) |
Refactor writing of input files into a separate function
Diffstat (limited to 'tests/api')
-rw-r--r-- | tests/api/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/api/__init__.py b/tests/api/__init__.py index 5f20faf..c84080e 100644 --- a/tests/api/__init__.py +++ b/tests/api/__init__.py @@ -4,7 +4,7 @@ from unittest import mock from falcon import testing from snekbox.api import SnekAPI -from snekbox.process import EvalResult +from snekbox.result import EvalResult class SnekAPITestCase(testing.TestCase): |