Skip to content

Commit ac4997f

Browse files
committed
fix test
1 parent f7a0ca7 commit ac4997f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/test_license_utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -759,13 +759,13 @@ def mocked_license_logger(message):
759759

760760
# Test that with no analysis argument, problems get sent out as warnings
761761
LicenseFileParser.validate_simple_license_file(filename='LICENSE.txt')
762-
assert license_warnings == ["The copyright year, '2020', should have '2025' at the end."]
762+
assert license_warnings == ["The copyright year, '2020', should have '2026' at the end."]
763763

764764
# Test that with an analysis argument, problems get summarized to that object
765765
analysis = LicenseAnalysis()
766766
license_warnings = []
767767
LicenseFileParser.validate_simple_license_file(filename='LICENSE.txt', analysis=analysis)
768-
assert analysis.miscellaneous == ["The copyright year, '2020', should have '2025' at the end."]
768+
assert analysis.miscellaneous == ["The copyright year, '2020', should have '2026' at the end."]
769769
assert license_warnings == []
770770

771771

0 commit comments

Comments
 (0)