fix: fix handling of Upgrade.uuid
now that it is a proper uuid7 instance, not just a string
This commit is contained in:
parent
48a473e540
commit
352afc1e22
2 changed files with 3 additions and 3 deletions
|
@ -127,7 +127,7 @@ class TestUpgradeView(WebTestCase):
|
|||
self.session.commit()
|
||||
|
||||
view = self.make_view()
|
||||
uuid = upgrade.uuid
|
||||
uuid = str(upgrade.uuid)
|
||||
|
||||
# no filename
|
||||
path = view.download_path(upgrade, None)
|
||||
|
@ -153,7 +153,7 @@ class TestUpgradeView(WebTestCase):
|
|||
self.session.commit()
|
||||
|
||||
view = self.make_view()
|
||||
uuid = upgrade.uuid
|
||||
uuid = str(upgrade.uuid)
|
||||
|
||||
# no filename
|
||||
path = view.get_upgrade_filepath(upgrade)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue