Skip to content

Commit db0d595

Browse files
committed
Formatting
1 parent ffe00b9 commit db0d595

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

juniper/src/macros/tests/object.rs

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ graphql_object!(CommasWithTrailing: () |&self| {
8484
});
8585

8686
struct CommasOnMeta;
87-
8887
graphql_object!(CommasOnMeta: () |&self| {
8988
interfaces: [Interface],
9089
description: "A description",

juniper/src/macros/tests/union.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ impl Concrete {
5353
}
5454
}
5555

56-
graphql_union!(CustomName: () as "ACustomNamedUnion" |&self| {
56+
graphql_union!(CustomName: () as "ACustomNamedUnion" |&self| {
5757
instance_resolvers: |&_| {
5858
&Concrete => match *self { CustomName::Concrete(ref c) => Some(c) }
5959
}

0 commit comments

Comments
 (0)