Skip to content

Commit

Permalink
Fixed failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Sep 27, 2015
1 parent 45286c7 commit b589d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/sangria/execution/Resolver.scala
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ class Resolver[Ctx](
} catch {
case NonFatal(e) => (errors.add(path, e, astField.position), None, None)
}
case Failure(error) => (errors.add(path, error, astField.position), None, None)
case Failure(error) => (errors.add(path, error), None, None)
}
}
}
Expand Down

0 comments on commit b589d47

Please sign in to comment.