def test_if_change_password_form_is_on_page_and_validating(self):
        self.client.login(username="jacob", password="top_secret")
        response = self.client.post("/user/password/")
        content = response.content.decode("utf-8")
        self.assertIn("Por favor, corrija os erros abaixo", content)