From 969ce53e4182c3fdf4b8e0561f69afa96f15dc11 Mon Sep 17 00:00:00 2001 From: Damien Pontifex Date: Wed, 17 Aug 2022 09:51:23 +0800 Subject: [PATCH] format test file --- tests/federation.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/federation.rs b/tests/federation.rs index a497f37a..3fdf8c66 100644 --- a/tests/federation.rs +++ b/tests/federation.rs @@ -305,7 +305,8 @@ pub async fn test_entity_shareable() { } } - let schema_sdl = Schema::new(Query, EmptyMutation, EmptySubscription).sdl_with_options(SDLExportOptions::new().federation()); + let schema_sdl = Schema::new(Query, EmptyMutation, EmptySubscription) + .sdl_with_options(SDLExportOptions::new().federation()); println!("{}", schema_sdl); assert_eq!( schema_sdl.contains("a: Int! @shareable"),