diff --git a/modules/scala/scala-interpreter/src/test/scala/almond/ScalaInterpreterTests.scala b/modules/scala/scala-interpreter/src/test/scala/almond/ScalaInterpreterTests.scala index 3368823b8..ac1332f37 100644 --- a/modules/scala/scala-interpreter/src/test/scala/almond/ScalaInterpreterTests.scala +++ b/modules/scala/scala-interpreter/src/test/scala/almond/ScalaInterpreterTests.scala @@ -52,7 +52,7 @@ object ScalaInterpreterTests extends TestSuite { val code = "HashM" val res = interpreter.complete(code, code.length) val expectedRes = Completion( - 5, // TODO Change back to 0 once https://github.com/lihaoyi/Ammonite/pull/845 is merged and used here + 0, 5, Seq( "java.util.HashMap", diff --git a/project/Deps.scala b/project/Deps.scala index 417ad3329..faf2e84a4 100644 --- a/project/Deps.scala +++ b/project/Deps.scala @@ -5,7 +5,7 @@ import sbt.Keys.scalaVersion object Deps { - def ammoniteRepl = ("com.lihaoyi" % "ammonite-repl" % "1.1.2-21-df41270").cross(CrossVersion.full) + def ammoniteRepl = ("com.lihaoyi" % "ammonite-repl" % "1.1.2-37-53fcfcd").cross(CrossVersion.full) def ammoniteSpark = "sh.almond" %% "ammonite-spark" % "0.1.1" def argonautShapeless = "com.github.alexarchambault" %% "argonaut-shapeless_6.2" % "1.2.0-M8" def caseAppAnnotations = "com.github.alexarchambault" %% "case-app-annotations" % "2.0.0-M2"