Failed to use ScalaTest

import org.scalatest.FunSuite class MyTestSuite extends FunSuite { } 

The following message appeared in the Intellij IDE:

the MyTestSuite class must either be declared abstract, or implement the abstract member '$ bang $ eq $ eq (right: T): TripleEqualsInvocation' in 'Org.scalactic.TripleEqualsSupport'

However, according to ScalaTest , nothing needs to be implemented. Please advice, thanks

+6
source share
1 answer

I had the same issue and the invalidation of caches / restarting IntelliJ fixed it.

+6
source

Source: https://habr.com/ru/post/981700/


All Articles