The generated test uses extra spaces after each newline. For ```elm --> """type List a --> = Nil --> | Cons a (List a)""" ``` the generated test will look like this: ```elm ( """type List a = Nil | Cons a (List a)""" ) ``` when it should be ```elm ( """type List a = Nil | Cons a (List a)""" ) ```