mirror of https://github.com/gofiber/fiber.git
🧙♂️ Add IPv6 support for Prefork
parent
5218eb462d
commit
8a74cc3843
|
@ -4,7 +4,6 @@ import (
|
|||
"crypto/tls"
|
||||
"io/ioutil"
|
||||
"os"
|
||||
"strings"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
|
@ -82,7 +81,7 @@ func Test_App_Prefork_TCP6_Addr(t *testing.T) {
|
|||
}()
|
||||
|
||||
err := app.Listen("[::1]:3200")
|
||||
utils.AssertEqual(t, true, strings.Contains(err.Error(), "exit status"), err.Error())
|
||||
utils.AssertEqual(t, true, err == nil)
|
||||
}
|
||||
|
||||
func Test_App_Prefork_Child_Process_Never_Show_Startup_Message(t *testing.T) {
|
||||
|
|
Loading…
Reference in New Issue