Drop redudant label in expectValue

This commit is contained in:
Dale Wijnand 2017-10-07 12:30:54 +01:00
parent 025075efd0
commit 74ac7d9e07
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ object CustomEquality {
}
}
def expectValue[A: Eq](expected: A)(x: A) = x.toString |: (expected =? x)
def expectValue[A: Eq](expected: A)(x: A) = expected =? x
}
import CustomEquality._