From 1996c9bac65eb0e473c3071d708584af0809ddeb Mon Sep 17 00:00:00 2001 From: github Date: Sun, 12 Nov 2023 18:17:36 +0100 Subject: [PATCH] Remove tests --- utils/sherlocks.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/sherlocks.go b/utils/sherlocks.go index b71c02a..5a4baf3 100644 --- a/utils/sherlocks.go +++ b/utils/sherlocks.go @@ -41,11 +41,11 @@ type SherlockNameID struct { // getSherlockDownloadLink constructs and returns the download link for a specific Sherlock challenge. func getSherlockDownloadLink(proxyURL string, sherlockID string) (string, error) { - // url := "https://www.hackthebox.com/api/v4/sherlocks/" + sherlockID + "/download_link" + url := "https://www.hackthebox.com/api/v4/sherlocks/" + sherlockID + "/download_link" - url := "https://www.hackthebox.com/api/v4/challenge/download/196" + // url := "https://www.hackthebox.com/api/v4/challenge/download/196" - return url, nil + // return url, nil resp, err := HtbRequest(http.MethodGet, url, proxyURL, nil) if err != nil {