aboutsummaryrefslogtreecommitdiffstats
path: root/tests/api/__init__.py
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2022-06-03 15:54:35 -0700
committerGravatar MarkKoz <[email protected]>2022-06-03 15:54:35 -0700
commitaad2a6db38a8300c9db74f215d8c6e562e502586 (patch)
tree41545ed154112de1930a1ff7751fce1d71f602bf /tests/api/__init__.py
parentUpdate pre-commit hooks and flake8 plugins (diff)
Add black and isort
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)