diff --git a/app/test/test.py b/app/test/test.py index 92ff5fb..4dd2b05 100644 --- a/app/test/test.py +++ b/app/test/test.py @@ -46,16 +46,6 @@ def test_auth(): assert response.status_code == 403 assert response.text == '{"detail":"Unauthorized"}' - -# def test_branch(): -# payload = {"ref": "refs/heads/master"} -# response = client.post("/test_ref", json= payload) -# assert response.status_code == 202 - -# payload = {"ref": "refs/heads/test"} -# response = client.post("/test_ref", json= payload) -# assert response.status_code == 403 - def test_web(): response = client.get('/test_web?token={}'.format(getenv("TOKEN"))) assert response.status_code == 200