remove old TBD comment

This commit is contained in:
Steven Polley 2020-05-29 22:32:26 -06:00
parent e86b5dbd7b
commit 489d5ba9cc
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ var sem chan Empty // semaphore to limit requess in flight
// test accepts a slice of type Redirect and returns an error
// it performs actual HTTP GET requests on each source URL and validates that a redirect occurs
// to the destination URL and that the redirect type/status code is correct
func test(redirects []Redirect) error { //TBD: implement
func test(redirects []Redirect) error {
wg := &sync.WaitGroup{}
mu := &sync.Mutex{}