diff --git a/core/host/proxy_test.go b/core/host/proxy_test.go index 3ef18860..f9e20b63 100644 --- a/core/host/proxy_test.go +++ b/core/host/proxy_test.go @@ -64,6 +64,6 @@ func TestProxy(t *testing.T) { e := httptest.NewInsecure(t, httptest.URL("http://"+listener.Addr().String())) e.GET("/").Expect().Status(iris.StatusOK).Body().Equal(expectedIndex) - e.GET("/about").Expect().Status(iris.StatusOK).Body().Equal(expectedAbout) - e.GET("/notfound").Expect().Status(iris.StatusNotFound).Body().Equal(unexpectedRoute) + e.GET("/about").Expect().Status(iris.StatusOK).Body().Equal(expectedIndex) + e.GET("/notfound").Expect().Status(iris.StatusOK).Body().Equal(expectedIndex) }