@@ -104,16 +104,18 @@ fn fragment_in_interface() {
104104 public_status: PublicStatus {
105105 display_name: false ,
106106 } ,
107- on: RustInterfaceWithFragmentQueryEverythingOn :: Person ( RustInterfaceWithFragmentQueryEverythingOnPerson {
108- birthday: Some ( "1934-02-18" . to_string( ) ) ,
109- } )
107+ on: RustInterfaceWithFragmentQueryEverythingOn :: Person (
108+ RustInterfaceWithFragmentQueryEverythingOnPerson {
109+ birthday: Some ( "1934-02-18" . to_string( ) ) ,
110+ }
111+ )
110112 } ,
111113 RustInterfaceWithFragmentQueryEverything {
112114 name: "Laïka" . to_string( ) ,
113115 public_status: PublicStatus { display_name: true } ,
114- on: RustInterfaceWithFragmentQueryEverythingOn :: Dog ( RustInterfaceWithFragmentQueryEverythingOnDog {
115- is_good_dog: true ,
116- } )
116+ on: RustInterfaceWithFragmentQueryEverythingOn :: Dog (
117+ RustInterfaceWithFragmentQueryEverythingOnDog { is_good_dog: true }
118+ )
117119 } ,
118120 RustInterfaceWithFragmentQueryEverything {
119121 name: "Mozilla" . to_string( ) ,
@@ -125,9 +127,9 @@ fn fragment_in_interface() {
125127 RustInterfaceWithFragmentQueryEverything {
126128 name: "Norbert" . to_string( ) ,
127129 public_status: PublicStatus { display_name: true } ,
128- on: RustInterfaceWithFragmentQueryEverythingOn :: Dog ( RustInterfaceWithFragmentQueryEverythingOnDog {
129- is_good_dog: true
130- } ) ,
130+ on: RustInterfaceWithFragmentQueryEverythingOn :: Dog (
131+ RustInterfaceWithFragmentQueryEverythingOnDog { is_good_dog: true }
132+ ) ,
131133 } ,
132134 ] )
133135 }
0 commit comments