Skip to content

Commit

Permalink
Merge pull request #190 from ministryofjustice/Updated-the-Azure-to-o…
Browse files Browse the repository at this point in the history
…ffice-365

Update test_join.py
  • Loading branch information
vijaykannan21 authored May 21, 2024
2 parents 2042869 + 6663d2e commit 7279302
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/routes/test_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def test_join_selection_justice_user(self):
response = self.client.get("/join/selection")

self.assertEqual(response.status_code, 200)
self.assertIn("Azure", str(response.data))
self.assertIn("Office 365", str(response.data))

def test_join_selection_other_user(self):
with self.client.session_transaction() as sess:
Expand All @@ -127,7 +127,7 @@ def test_join_selection_other_user(self):
response = self.client.get("/join/selection")

self.assertEqual(response.status_code, 200)
self.assertIn("Azure", str(response.data))
self.assertIn("Office 365", str(response.data))


class TestInvitationSent(unittest.TestCase):
Expand Down

0 comments on commit 7279302

Please sign in to comment.