3
0
Fork 0

fix: refactor to reflect usage of proper UUID values

This commit is contained in:
Lance Edgar 2024-12-08 00:11:30 -06:00
parent 805ce5966f
commit fd35f439ec
6 changed files with 19 additions and 9 deletions

View file

@ -88,7 +88,7 @@ class TestCommonView(WebTestCase):
# basic send, with user
self.request.user = user
self.request.POST['user_uuid'] = user.uuid
self.request.POST['user_uuid'] = str(user.uuid)
with patch.object(mod, 'Session', return_value=self.session):
context = view.feedback()
self.assertEqual(context, {'ok': True})