Merge pull request #14 from cee-dub/master

Fixed minor test error.
diff --git a/formatter_test.go b/formatter_test.go
index 4342f1b..1b55ae5 100644
--- a/formatter_test.go
+++ b/formatter_test.go
@@ -220,7 +220,7 @@
 	}
 	// here be pirates
 	r.R.R.R.R.R.R.R.R.R.R.R = r
-	t.Logf("Example long interface cycle:\n%# v", Formatter(r))
+	t.Logf("Example very long cycle:\n%# v", Formatter(r))
 
 	i := &I{
 		i: 1,
@@ -255,5 +255,7 @@
 			},
 		},
 	}
-	t.Logf("Example very long cycle:\n%# v", Formatter(i))
+	iv := i.I().I().I().I().I().I().I().I().I().I()
+	*iv = *i
+	t.Logf("Example long interface cycle:\n%# v", Formatter(i))
 }