From 30d51d19ed6eb425cbfb85c5dcbebd5e77816732 Mon Sep 17 00:00:00 2001 From: Chris Lovering Date: Thu, 3 Oct 2024 19:47:53 +0100 Subject: Correct spelling in test cases --- tests/test_integration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_integration.py b/tests/test_integration.py index ce01bb8..9ae2da8 100644 --- a/tests/test_integration.py +++ b/tests/test_integration.py @@ -85,12 +85,12 @@ class IntegrationTests(unittest.TestCase): """Test that passing invalid binary paths result in no code execution.""" with run_gunicorn(): cases = [ - ("/bin/bash", "test files outside of /lang cannot be ran"), + ("/bin/bash", "test files outside of /lang cannot be run"), ( "/lang/../bin/bash", "test path traversal still stops files outside /lang from running", ), - ("/foo/bar", "test non-existant files are not ran"), + ("/foo/bar", "test non-existant files are not run"), ] for path, msg in cases: with self.subTest(msg=msg, path=path): -- cgit v1.2.3