diff --git a/hoogle-test/ref/Bug806/test.txt b/hoogle-test/ref/Bug806/test.txt
index 67e9fd6180c514184026c28b7ed6561f488852e8..8abdffaef2b4db1f944b5228b4d6b8acd5747538 100644
--- a/hoogle-test/ref/Bug806/test.txt
+++ b/hoogle-test/ref/Bug806/test.txt
@@ -20,6 +20,6 @@ v :: Int
 class C a where {
     
     -- | <a>AT</a> docs
-    type family AT a;
+    type AT a;
     type AT a = Proxy (Proxy (Proxy (Proxy (Proxy (Proxy (Proxy (Proxy (Proxy (Proxy)))))))));
 }
diff --git a/hoogle-test/ref/assoc-types/test.txt b/hoogle-test/ref/assoc-types/test.txt
index ba1a145a5f67b812f2c9f92a259cce864df85ea8..0d2aa4a96377a19855fd26fda866ffb0267b0c7d 100644
--- a/hoogle-test/ref/assoc-types/test.txt
+++ b/hoogle-test/ref/assoc-types/test.txt
@@ -6,8 +6,8 @@
 
 module AssocTypes
 class Foo a where {
-    type family Bar a b;
-    type family Baz a;
+    type Bar a b;
+    type Baz a;
     type Baz a = [(a, a)];
 }
 bar :: Foo a => Bar a a