From 7d7b38e7a91279aa5a3922a96089ad62c8690a0e Mon Sep 17 00:00:00 2001 From: spwoodcock Date: Thu, 21 Nov 2024 19:18:02 +0000 Subject: [PATCH] fix: minor ruff lint error --- tests/endpoints/test_submissions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/endpoints/test_submissions.py b/tests/endpoints/test_submissions.py index 7584737..f8c69b7 100644 --- a/tests/endpoints/test_submissions.py +++ b/tests/endpoints/test_submissions.py @@ -185,7 +185,7 @@ def test_upload_bytes__no_filename(self): form_id=fixture["form_id"], project_id=fixture["project_id"], ) - self.assertIn('file_name: str type expected', str(context.exception)) + self.assertIn("file_name: str type expected", str(context.exception)) def test_upload_file__ok(self): """Should return True when the file attachment is successfully uploaded."""