Meta: Don't check for newlines at EOF in Tests/LibWeb/Ref/

There are tests where absence of newlines at EOF is important and
required to check certain behavior.
This commit is contained in:
Aliaksandr Kalenik 2025-01-24 22:47:31 +01:00 committed by Andreas Kling
parent 391a08bf17
commit f08e01c5d9
Notes: github-actions[bot] 2025-01-25 09:17:33 +00:00

View file

@ -14,6 +14,8 @@ def should_check_file(filename):
return False
if filename.startswith('Tests/LibWeb/Layout/'):
return False
if filename.startswith('Tests/LibWeb/Ref/'):
return False
if filename.startswith('Tests/LibWeb/Text/'):
return False
if filename.endswith('.txt'):