aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_integration.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_integration.py')
-rw-r--r--tests/test_integration.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_integration.py b/tests/test_integration.py
index 62a7d69..e173dd3 100644
--- a/tests/test_integration.py
+++ b/tests/test_integration.py
@@ -85,11 +85,11 @@ class IntegrationTests(unittest.TestCase):
"""Test that passing invalid binary paths result in no code execution."""
with run_gunicorn():
cases = [
- ("/abc/def", "test non-existant files are not run", "binary_path does not exist"),
- ("/snekbin", "test directories are not ran", "binary_path is not a file"),
+ ("/abc/def", "test non-existent files are not run", "binary_path does not exist"),
+ ("/snekbin", "test directories are not run", "binary_path is not a file"),
(
"/etc/hostname",
- "test non-executable files are not ran",
+ "test non-executable files are not run",
"binary_path is not executable",
),
]