We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 396f999 commit f81a5d7Copy full SHA for f81a5d7
src/test/scala/fpprincipleslib/FunctionsAndEvaluationSpec.scala
@@ -6,12 +6,12 @@ import org.scalatest.Spec
6
import org.scalatest.prop.Checkers
7
import shapeless.HNil
8
9
-class FunctionsAndEvaluationSection extends Spec with Checkers {
+class FunctionsAndEvaluationSectionSpec extends Spec with Checkers {
10
def `function asserts` = {
11
- check(Test.testSuccess(SectionA.functionAssert _, true :: HNil))
+ check(Test.testSuccess(FunctionsAndEvaluationSection.functionAssert _, true :: HNil))
12
}
13
14
def `function false asserts` = {
15
- check(Test.testSuccess(SectionA.functionFalseAssert _, false :: HNil))
+ check(Test.testSuccess(FunctionsAndEvaluationSection.functionFalseAssert _, false :: HNil))
16
17
0 commit comments