From 8e8b4fa8f1debd713b4f3f88307741dee594e79c Mon Sep 17 00:00:00 2001 From: Nepomuk Seiler Date: Sat, 13 Jan 2018 16:57:40 +0100 Subject: [PATCH] Fix test-project --- test-project/build.sbt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test-project/build.sbt b/test-project/build.sbt index 67ee38b..2d43bd4 100644 --- a/test-project/build.sbt +++ b/test-project/build.sbt @@ -12,7 +12,7 @@ lazy val server = project.in(file("server")) graphqlQueryDirectory in IntegrationTest := (sourceDirectory in IntegrationTest).value / "graphql" ) .settings( - addCommandAlias("validateSangriaExample", "graphqlValidateSchema build sangria-example") + addCommandAlias("validateStarWars", "graphqlValidateSchema build starwars") ) lazy val client = project.in(file("client")) @@ -42,9 +42,9 @@ lazy val commonSettings = Seq( "starwars schema at http://try.sangria-graphql.org/graphql", Def.task( GraphQLSchemaLoader - .fromIntrospection("http://try.sangria-graphql.org/graphql", streams.value.log) - .withHeaders("User-Agent" -> s"sbt-graphql/${version.value}") - .loadSchema() + .fromIntrospection("http://try.sangria-graphql.org/graphql", streams.value.log) + .withHeaders("User-Agent" -> s"sbt-graphql/${version.value}") + .loadSchema() ).taskValue ) )