diff --git a/.travis.yml b/.travis.yml
index a8a5240..924f3c4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,5 +4,10 @@ go:
- 1.7.x
- 1.8.x
- tip
-install: go get -v
-script: GOMAXPROCS=4 GORACE="halt_on_error=1" go test -race -v ./...
+env:
+ - GOMAXPROCS=4 GORACE=halt_on_error=1
+install:
+ - go get github.com/stretchr/testify/assert
+script:
+ - go test -race -v .
+ - cd hooks/null && go test -race -v .
diff --git a/README.md b/README.md
index b761d2f..2674b8b 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# Logrus [![Build Status](https://travis-ci.org/Sirupsen/logrus.svg?branch=master)](https://travis-ci.org/Sirupsen/logrus) [![GoDoc](https://godoc.org/github.com/Sirupsen/logrus?status.svg)](https://godoc.org/github.com/Sirupsen/logrus)
+# Logrus [![Build Status](https://travis-ci.org/sirupsen/logrus.svg?branch=master)](https://travis-ci.org/sirupsen/logrus) [![GoDoc](https://godoc.org/github.com/sirupsen/logrus?status.svg)](https://godoc.org/github.com/sirupsen/logrus)
**Seeing weird case-sensitive problems?** See [this
issue](https://github.com/sirupsen/logrus/issues/451#issuecomment-264332021).
diff --git a/alt_exit_test.go b/alt_exit_test.go
index 022b778..d182963 100644
--- a/alt_exit_test.go
+++ b/alt_exit_test.go
@@ -44,7 +44,7 @@ var testprog = []byte(`
package main
import (
- "github.com/Sirupsen/logrus"
+ "github.com/sirupsen/logrus"
"flag"
"fmt"
"io/ioutil"