aboutsummaryrefslogtreecommitdiffstats
path: root/tests/api/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/api/__init__.py')
-rw-r--r--tests/api/__init__.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/api/__init__.py b/tests/api/__init__.py
index a900316..3f7d250 100644
--- a/tests/api/__init__.py
+++ b/tests/api/__init__.py
@@ -14,10 +14,7 @@ class SnekAPITestCase(testing.TestCase):
self.patcher = mock.patch("snekbox.api.resources.eval.NsJail", autospec=True)
self.mock_nsjail = self.patcher.start()
self.mock_nsjail.return_value.python3.return_value = CompletedProcess(
- args=[],
- returncode=0,
- stdout="output",
- stderr="error"
+ args=[], returncode=0, stdout="output", stderr="error"
)
self.addCleanup(self.patcher.stop)