Skip to content

Commit 423eccc

Browse files
authored
Merge pull request #43 from scala-exercises/nm-41-migrate-evaluator
Update the deployment and smoketests to point to the production URL
2 parents 6b24a58 + 35a4000 commit 423eccc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,5 @@ lazy val dockerSettings = Seq(
117117
.add(artifact, artifactTargetPath)
118118
.cmdRaw(s"java -Dhttp.port=$$PORT -Deval.auth.secretKey=$$EVAL_SECRET_KEY -jar $artifactTargetPath")
119119
},
120-
imageNames in docker := Seq(ImageName(repository = "registry.heroku.com/scala-evaluator-sandbox/web"))
120+
imageNames in docker := Seq(ImageName(repository = "registry.heroku.com/scala-evaluator/web"))
121121
)

smoketests/src/test/scala/org/scalaexercises/evaluator/Smoketests.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Smoketests extends FunSpec with Matchers with CirceInstances {
3131

3232
val request = new Request(
3333
method = Method.POST,
34-
uri = Uri.uri("http://scala-evaluator-sandbox.herokuapp.com/eval"),
34+
uri = Uri.uri("http://scala-evaluator.herokuapp.com/eval"),
3535
headers = Headers(headers)
3636
).withBody(
3737
s"""{"resolvers" : [], "dependencies" : [], "code" : "$code"}""")

0 commit comments

Comments
 (0)