]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Update test-license.py
authorW. Felix Handte <w@felixhandte.com>
Tue, 21 Jun 2022 16:11:22 +0000 (12:11 -0400)
committerW. Felix Handte <w@felixhandte.com>
Tue, 20 Dec 2022 17:43:16 +0000 (12:43 -0500)
tests/test-license.py

index 317c459d19730b119b799e38dbe011dbcf0ac3ad..d54c16419e97b5cb6ac1551898207d5d13662b29 100755 (executable)
@@ -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")