Skip to content

Commit

Permalink
Fix 2.13 compilation, travis
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Jun 12, 2019
1 parent e3c7dd5 commit f5cc19c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: scala
jdk:
- oraclejdk8
- openjdk8
scala:
- 2.12.8
- 2.13.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ object AfterAllTerminate {
contextClassLoader = Some(Thread.currentThread().getContextClassLoader)).newThread(new Runnable {
override def run(): Unit = {
val terminate = system.terminate()
Await.result(terminate, 10 seconds)
Await.result(terminate, 10.seconds)
}
})
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.softwaremill.macwire._
// For some reason this compiles when run as a compile-test, hence putting it in tests2.
object ImplicitAndUsageInObject {
case class B()
case class A(implicit val b: B)
case class A()(implicit val b: B)

implicit val b = new B
val a = wire[A]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import com.softwaremill.macwire._
// For some reason this compiles when run as a compile-test, hence putting it in tests2.
object ImplicitFromParentUsageInObject {
case class B()
case class A(implicit val b: B)
case class A()(implicit val b: B)

trait Parent {
implicit val b = new B
Expand Down

0 comments on commit f5cc19c

Please sign in to comment.