diff --git a/.travis.yml b/.travis.yml
index a75219c..e756808 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -15,7 +15,7 @@ addons:
- golang
before_install:
- export GOPATH=~/go
- - go get github.com/uiri/toml-test
+ - go get github.com/BurntSushi/toml-test
install:
- pip install tox-travis
- python setup.py install
diff --git a/CONTRIBUTING b/CONTRIBUTING
index 3e6c98b..c1dd22a 100644
--- a/CONTRIBUTING
+++ b/CONTRIBUTING
@@ -42,7 +42,7 @@ Directions
----------
1. Install `Go `_ (AKA golang)
-2. Get the toml-test suite from `here `_
+2. Get the toml-test suite from `here `_
and follow the instructions under the **Try it out** section of the README.
3. Test your changes for both versions of Python:
diff --git a/README.rst b/README.rst
index 691e069..74f34ac 100644
--- a/README.rst
+++ b/README.rst
@@ -14,8 +14,7 @@ TOML
A Python library for parsing and creating `TOML `_.
-The module passes `the TOML test suite `_
-which is a fork of `BurntSushi's TOML test suite `_.
+The module passes `the TOML test suite `_.
See also:
diff --git a/tests/tox.sh b/tests/tox.sh
index d149aa9..1d34f87 100755
--- a/tests/tox.sh
+++ b/tests/tox.sh
@@ -6,7 +6,7 @@ if [ "${version/Python 3.3}" != "$version" ]; then
exit 0
fi
-git clone https://github.com/uiri/toml-test
+git clone https://github.com/BurntSushi/toml-test
tox
r=$?