Script comments.
diff --git a/script/acceptancetest b/script/acceptancetest
index 48bd9ff..d8039ae 100755
--- a/script/acceptancetest
+++ b/script/acceptancetest
@@ -1,5 +1,5 @@
#!/bin/bash
#
-# Run all the tests.
+# Run the acceptance tests.
exec go test -tags 'acceptance fixtures' ./acceptance/... $@
diff --git a/script/unittest b/script/unittest
index c9f6512..d3440a9 100755
--- a/script/unittest
+++ b/script/unittest
@@ -1,5 +1,5 @@
#!/bin/bash
#
-# Run all the tests.
+# Run the unit tests.
exec go test -tags fixtures ./... $@