Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Oct 16, 2023
1 parent 280db94 commit 3500997
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ pub enum ServerMessage<S> {

#[cfg(test)]
mod test {
use juniper::{graphql_value, DefaultScalarValue};
use juniper::{graphql_value, DefaultScalarValue, GraphQLError};

use super::*;

Expand Down
2 changes: 1 addition & 1 deletion juniper_graphql_ws/src/graphql_ws/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ mod test {
futures::sink::SinkExt,
graphql_input_value, graphql_object, graphql_subscription, graphql_value, graphql_vars,
parser::{ParseError, Spanning},
DefaultScalarValue, EmptyMutation, FieldError, FieldResult, RootNode,
DefaultScalarValue, EmptyMutation, FieldError, FieldResult, RootNode, Variables,
};

use super::*;
Expand Down
2 changes: 1 addition & 1 deletion juniper_graphql_ws/src/graphql_ws/server_message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pub enum ServerMessage<S> {

#[cfg(test)]
mod test {
use juniper::{graphql_value, DefaultScalarValue};
use juniper::{graphql_value, DefaultScalarValue, GraphQLError};

use super::*;

Expand Down

0 comments on commit 3500997

Please sign in to comment.