(urlString string)
| 641 | }) |
| 642 | |
| 643 | func getHost(urlString string) string { |
| 644 | url, err := url.Parse(urlString) |
| 645 | Expect(err).NotTo(HaveOccurred()) |
| 646 | return url.Host |
| 647 | } |
| 648 | |
| 649 | func refreshTokenAPIEndPoint(unauthorizedBody string, secondReqResp testnet.TestResponse) http.HandlerFunc { |
| 650 | return func(writer http.ResponseWriter, request *http.Request) { |
no test coverage detected