Skip to content

Commit

Permalink
squash fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
lennyburdette committed Nov 5, 2024
1 parent 3dd322c commit 9bd73b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apollo-router/src/plugins/connectors/handle_responses.rs
Original file line number Diff line number Diff line change
Expand Up @@ -771,7 +771,7 @@ mod tests {
headers: Default::default(),
body: Default::default(),
},
selection: JSONSelection::parse("$status").unwrap().1,
selection: JSONSelection::parse("$status").unwrap(),
entity_resolver: None,
config: Default::default(),
max_requests: None,
Expand All @@ -785,7 +785,7 @@ mod tests {
name: "hello".to_string(),
inputs: Default::default(),
typename: ResponseTypeName::Concrete("Int".to_string()),
selection: Arc::new(JSONSelection::parse("$status").unwrap().1),
selection: Arc::new(JSONSelection::parse("$status").unwrap()),
};

let res = super::handle_responses(
Expand Down

0 comments on commit 9bd73b3

Please sign in to comment.