aboutsummaryrefslogtreecommitdiff
path: root/http_server_play_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'http_server_play_test.go')
-rw-r--r--http_server_play_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/http_server_play_test.go b/http_server_play_test.go
index df9f4f3..ed5bae6 100644
--- a/http_server_play_test.go
+++ b/http_server_play_test.go
@@ -66,7 +66,7 @@ func TestHttpServerPlaySshConfigChanges(t *testing.T) {
var httpd *httpServer
- httpd, err = newHttpServer(aww, ``)
+ httpd, err = newHTTPServer(aww, ``)
if err != nil {
t.Fatal(err)
}
@@ -92,7 +92,7 @@ func testHttpExecute(t *testing.T, httpd *httpServer, tdata *test.Data, tag stri
reqBody.Write(tdata.Input[tag])
- var httpReq = httptest.NewRequest(http.MethodPost, pathAwwanApiExecute, &reqBody)
+ var httpReq = httptest.NewRequest(http.MethodPost, pathAwwanAPIExecute, &reqBody)
var httpWriter = httptest.NewRecorder()
httpd.ServeHTTP(httpWriter, httpReq)