From b4f19557e648d96fc1a87677ea3c02143a525cbd Mon Sep 17 00:00:00 2001 From: Stefano Germano Date: Mon, 19 Oct 2020 16:15:25 +0200 Subject: More details in build.sbt and updated dependencies While updating the dependencies, I noticed that v3.2 of scalatest is very different from v3.1 (https://www.scalatest.org/release_notes/3.2.0). Therefore, I also needed to update the test files. But, there is a "too many arguments" error that needs to be solved (I do not know why it was working before). --- src/test/scala/rsacomb/OWLClassSpec.scala | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/test/scala/rsacomb/OWLClassSpec.scala') diff --git a/src/test/scala/rsacomb/OWLClassSpec.scala b/src/test/scala/rsacomb/OWLClassSpec.scala index d1e9fdb..74c641e 100644 --- a/src/test/scala/rsacomb/OWLClassSpec.scala +++ b/src/test/scala/rsacomb/OWLClassSpec.scala @@ -1,6 +1,8 @@ package rsacomb -import org.scalatest.{FlatSpec, Matchers, LoneElement} +import org.scalatest.LoneElement +import org.scalatest.flatspec.AnyFlatSpec +import org.scalatest.matchers.should.Matchers import uk.ac.manchester.cs.owl.owlapi.{ OWLClassImpl, @@ -99,7 +101,7 @@ object OWLClassSpec { ) } // object OWLClassSpec -class OWLClassSpec extends FlatSpec with Matchers with LoneElement { +class OWLClassSpec extends AnyFlatSpec with Matchers with LoneElement { // Import required data import OWLClassSpec._ -- cgit v1.2.3