From 7209bdfdb3cdfae2862657b68f0ccc56b9f33ad4 Mon Sep 17 00:00:00 2001 From: Greg Bougeard Date: Wed, 24 Feb 2016 16:40:58 +0100 Subject: [PATCH] Add `targetUrl` in the `deployment_status` creation test --- .../tv/teads/github/api/services/DeploymentServiceSpec.scala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/scala/tv/teads/github/api/services/DeploymentServiceSpec.scala b/src/test/scala/tv/teads/github/api/services/DeploymentServiceSpec.scala index a065f0b..f50a5f0 100644 --- a/src/test/scala/tv/teads/github/api/services/DeploymentServiceSpec.scala +++ b/src/test/scala/tv/teads/github/api/services/DeploymentServiceSpec.scala @@ -58,7 +58,8 @@ class DeploymentServiceSpec extends BaseSpec { it should "create a deployment status" in { val status = DeploymentStatusParam( state = DeploymentStatusState.error, - description = Some("github-api-client/DeploymentServiceSpec Unit test - create Deployment Status") + description = Some("github-api-client/DeploymentServiceSpec Unit test - create Deployment Status"), + target_url = Some("https://www.google.com") ) whenReady(teadsClient.deployments.createStatus("github-api-client", 3775791, status)) { opt ⇒