Skip to content

Commit

Permalink
Update test_views.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gabeweng authored Dec 4, 2024
1 parent bf105d4 commit ecd4de6
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions backend/tests/clubs/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -3051,13 +3051,6 @@ def test_ownership_requests_withdraw(self):
self.assertEqual(resp.status_code, 200, resp.content)
self.assertEqual(len(resp.json()), 0, resp.content)

self.client.login(username=self.user5.username, password="test")
resp = self.client.get(
reverse("club-ownership-requests-old-requests", args=("anystring",))
)
self.assertEqual(resp.status_code, 200, resp.content)
self.assertEqual(len(resp.json()), 0, resp.content)

# Recreate ownership request
self.client.login(username=self.user2.username, password="test")
resp = self.client.post(
Expand Down

0 comments on commit ecd4de6

Please sign in to comment.