fixed booking confirmation message

This commit is contained in:
2025-07-07 11:12:45 +02:00
parent 185744ff7b
commit 65a05e73b7
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ class TestPoints:
club1.update({"places": points-1})
response = client.post('/purchasePlaces', data=club1)
soup = BeautifulSoup(response.data, "html.parser")
assert "Great-booking complete!" == soup.li.text
assert f"Great ! "+str(points-1)+" places booked for "+club1['competition'] == soup.li.text
class TestPlaces: