Handy utility function.
diff --git a/acceptance/tools/tools.go b/acceptance/tools/tools.go
index b3f3ea7..61b1d7a 100644
--- a/acceptance/tools/tools.go
+++ b/acceptance/tools/tools.go
@@ -71,3 +71,12 @@
 	}
 	return prefix + string(bytes)
 }
+
+// Elide returns the first bit of its input string with a suffix of "..." if it's longer than
+// a comfortable 40 characters.
+func Elide(value string) string {
+	if len(value) > 40 {
+		return value[0:37] + "..."
+	}
+	return value
+}