From: W. Felix Handte Date: Tue, 21 Jun 2022 16:11:22 +0000 (-0400) Subject: Update test-license.py X-Git-Tag: v1.5.4^2~88^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c999cf968f6c5cf1bec76c806f4558d51fb0d54;p=thirdparty%2Fzstd.git Update test-license.py --- diff --git a/tests/test-license.py b/tests/test-license.py index 317c459d1..d54c16419 100755 --- a/tests/test-license.py +++ b/tests/test-license.py @@ -83,8 +83,8 @@ def valid_copyright(lines): continue if "present" in line: return (False, f"Copyright line '{line}' contains 'present'!") - if "Facebook, Inc" not in line: - return (False, f"Copyright line '{line}' does not contain 'Facebook, Inc'") + if "Meta Platforms, Inc" not in line: + return (False, f"Copyright line '{line}' does not contain 'Meta Platforms, Inc'") year = YEAR_REGEX.search(line) if year is not None: return (False, f"Copyright line '{line}' contains {year.group(0)}; it should be yearless")