From 02230bd5e2a23f74ffcf2facdfe7ce61681562ef Mon Sep 17 00:00:00 2001 From: Daph Renel Date: Fri, 7 Dec 2018 16:54:22 +0800 Subject: [PATCH] Fix link for httpexpect in README the previous link will be automatically appended to `https://github.com/kataras/iris/` and thus get a wrong direction Former-commit-id: e791aa332c487fd27e04f9460482502dd160f45f --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c29b829..f0cfb903 100644 --- a/README.md +++ b/README.md @@ -908,7 +908,7 @@ func main() { ### Testing -Iris offers an incredible support for the [httpexpect](github.com/iris-contrib/httpexpect), a Testing Framework for web applications. However, you are able to use the standard Go's `net/http/httptest` package as well but in this example we will use the `kataras/iris/httptest`. +Iris offers an incredible support for the [httpexpect](https://github.com/iris-contrib/httpexpect), a Testing Framework for web applications. However, you are able to use the standard Go's `net/http/httptest` package as well but in this example we will use the `kataras/iris/httptest`. ```go package main