format test file

This commit is contained in:
Damien Pontifex 2022-08-17 09:51:23 +08:00
parent 9ea3088978
commit 969ce53e41
1 changed files with 2 additions and 1 deletions

View File

@ -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"),