@@ -104,16 +104,18 @@ fn fragment_in_interface() {
104
104
public_status: PublicStatus {
105
105
display_name: false ,
106
106
} ,
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
+ )
110
112
} ,
111
113
RustInterfaceWithFragmentQueryEverything {
112
114
name: "Laïka" . to_string( ) ,
113
115
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
+ )
117
119
} ,
118
120
RustInterfaceWithFragmentQueryEverything {
119
121
name: "Mozilla" . to_string( ) ,
@@ -125,9 +127,9 @@ fn fragment_in_interface() {
125
127
RustInterfaceWithFragmentQueryEverything {
126
128
name: "Norbert" . to_string( ) ,
127
129
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
+ ) ,
131
133
} ,
132
134
] )
133
135
}
0 commit comments