Skip to content

Commit

Permalink
test: correct checksum for changed template
Browse files Browse the repository at this point in the history
A change I made to disable spellcheck in user.item.html caused the
render funxtion to generate a diferent sha1 checksum. The test looks
for the checksum. Update to the new checkum after the change.
  • Loading branch information
rouilj committed Jul 9, 2024
1 parent b5e4d03 commit 08c1788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_cgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2850,7 +2850,7 @@ def testRenderAltTemplates(self):
result = self.client.renderContext()
print(result)
# sha1sum of classic tracker user.item.template must be found
sha1sum = '<!-- SHA: 3b7ce7cbf24f77733c9b9f64a569d6429390cc3f -->'
sha1sum = '<!-- SHA: 952568414163cd12b2e89e91e59ef336da64fbbe -->'
self.assertNotEqual(-1, result.index(sha1sum))


Expand Down

0 comments on commit 08c1788

Please sign in to comment.