From be803885312b8fa9d6a267a1241abc961eb72dad Mon Sep 17 00:00:00 2001 From: Anna Meyer <annapmeyer95@gmail.com> Date: Fri, 11 Aug 2023 11:35:50 -0500 Subject: [PATCH] increase file size limit --- sum23/projects/p13/p13_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sum23/projects/p13/p13_test.py b/sum23/projects/p13/p13_test.py index 3c1f4b2..9aa21ab 100644 --- a/sum23/projects/p13/p13_test.py +++ b/sum23/projects/p13/p13_test.py @@ -7,7 +7,7 @@ from bs4 import BeautifulSoup HTML_TEST_FILE = 'p13_expected.html' -MAX_FILE_SIZE = 550 # units - KB +MAX_FILE_SIZE = 650 # units - KB REL_TOL = 6e-04 # relative tolerance for floats ABS_TOL = 15e-03 # absolute tolerance for floats -- GitLab