Remove a line break that broke 'grep -v' in test/go/Makefile.am
diff --git a/test/ThriftTest.thrift b/test/ThriftTest.thrift
index a58ed97..20929d4 100644
--- a/test/ThriftTest.thrift
+++ b/test/ThriftTest.thrift
@@ -110,8 +110,8 @@
 struct CrazyNesting {
   1: string string_field,
   2: optional set<Insanity> set_field,
-  3: required list<map<set<i32> (python.immutable = ""),
-                       map<i32,set<list<map<Insanity,string>(python.immutable = "")> (python.immutable = "")>>>> list_field,
+  // Do not insert line break as test/go/Makefile.am is removing this line with pattern match
+  3: required list<map<set<i32> (python.immutable = ""), map<i32,set<list<map<Insanity,string>(python.immutable = "")> (python.immutable = "")>>>> list_field,
   4: binary binary_field
 }