Skip to content

Commit

Permalink
Corrected a minor type annotation to fix 2.10.x build
Browse files Browse the repository at this point in the history
  • Loading branch information
holograph committed Jun 10, 2015
1 parent 295f6f9 commit 8c49e6b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ class CollectionOpsTests extends WordSpec with Matchers with ResultMatchers with

"The expression \"is empty\"" should {
"return an Empty combinator" in {
emptyValidator shouldBe an[ Empty[ Seq[ ArbitraryType ] ] ]
emptyValidator shouldBe an[ Empty[_] ]
}
}

"The expression \"is notEmpty\"" should {
"return an Empty combinator" in {
notEmptyValidator shouldBe a[ NotEmpty[ Seq[ ArbitraryType ] ] ]
notEmptyValidator shouldBe a[ NotEmpty[_] ]
}
}

Expand Down

0 comments on commit 8c49e6b

Please sign in to comment.