Make starter packs the default page while retaining all the links of accounts
Commit 3f8b1 pushed by Anže Pečar

57 tests 55 passed 2 failed Duration
self = <accounts.tests.TestSelectedInstance testMethod=test_no_selected_instance>

    def test_no_selected_instance(self):
        response = self.client.get("/")
>       self.assertEqual(response.status_code, 200)
E       AssertionError: 302 != 200

accounts/tests.py:73: AssertionError
self = <accounts.tests.TestSelectedInstance testMethod=test_selected_instance_through_session>

    def test_selected_instance_through_session(self):
        self.client.get("/?selected_instance=mastodon.social")
        response = self.client.get("/")
>       self.assertEqual(response.status_code, 200)
E       AssertionError: 302 != 200

accounts/tests.py:178: AssertionError