jsuereth / sbt-in-action-examples

Source code examples for the book "sbt in Action"
144 stars 54 forks source link

CH4: Object specs2 is not a member of package org #12

Closed dusank closed 9 years ago

dusank commented 10 years ago
> test
[info] Compiling 1 Scala source to D:\ws\sbt-in-action-examples\chapter4\target\scala-2.10\test-classes...
[error] D:\ws\sbt-in-action-examples\chapter4\src\test\scala\LogicSpec.scala:1: object specs2 is not a member of package org
[error] import org.specs2.mutable.Specification
[error]            ^
[error] D:\ws\sbt-in-action-examples\chapter4\src\test\scala\LogicSpec.scala:3: not found: type Specification
[error] object LogicSpec extends Specification {
[error]                          ^
[error] D:\ws\sbt-in-action-examples\chapter4\src\test\scala\LogicSpec.scala:4: value should is not a member of String
[error]   "The 'matchLikelihood' method" should {
[error]                                  ^
[error] three errors found
[error] (chapter4/test:compile) Compilation failed
jsuereth commented 9 years ago

Thanks for the report. It looks like a merge conflict when refactoring chapter 3! I'm working the solution now.