Skip to content
This repository has been archived by the owner on Mar 11, 2020. It is now read-only.

Commit

Permalink
build: upgrade scodec & fix failing test
Browse files Browse the repository at this point in the history
 - upgrade scodec to 1.8 and thereby shapeless to 2.2.2

 - upgrade scodec-scalaz to 1.1.0 in order to match
   scodec upgrade.

 - fix `DescribeSpec` wrt. casing.
  • Loading branch information
ahjohannessen committed Jun 20, 2015
1 parent 0562b4e commit ee0a5aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ scalacOptions ++= Seq(
)

libraryDependencies ++= Seq(
"org.scodec" %% "scodec-core" % "1.7.0",
"org.scodec" %% "scodec-scalaz" % "1.0.0",
"org.scodec" %% "scodec-core" % "1.8.0",
"org.scodec" %% "scodec-scalaz" % "1.1.0",
"org.scalaz" %% "scalaz-core" % "7.1.0",
"org.scalaz.stream" %% "scalaz-stream" % "0.7a",
"org.apache.commons" % "commons-pool2" % "2.2",
Expand Down
2 changes: 1 addition & 1 deletion test-server/src/test/scala/DescribeSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class DescribeSpec extends FlatSpec
desc should contain (Signature("foo", Nil, "remotely.test.Foo"))
desc should contain (Signature("fooId", List(Field("in", "remotely.test.Foo")), "remotely.test.Foo"))
desc should contain (Signature("foobar", List(Field("in", "remotely.test.Foo")), "remotely.test.Bar"))
desc should contain (Signature("describe", Nil, "List[Remotely.Signature]"))
desc should contain (Signature("describe", Nil, "List[remotely.Signature]"))
}

behavior of "Client"
Expand Down

0 comments on commit ee0a5aa

Please sign in to comment.