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/OWLAxiomSpec.scala | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/test/scala/rsacomb/OWLAxiomSpec.scala') diff --git a/src/test/scala/rsacomb/OWLAxiomSpec.scala b/src/test/scala/rsacomb/OWLAxiomSpec.scala index c5b8763..a389242 100644 --- a/src/test/scala/rsacomb/OWLAxiomSpec.scala +++ b/src/test/scala/rsacomb/OWLAxiomSpec.scala @@ -1,7 +1,9 @@ package rsacomb import java.util.ArrayList -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.{OWLSubClassOfAxiomImpl} import uk.ac.manchester.cs.owl.owlapi.{ @@ -168,7 +170,7 @@ object OWLAxiomSpec { } // object OWLAxiomSpec -class OWLAxiomSpec extends FlatSpec with Matchers with LoneElement { +class OWLAxiomSpec extends AnyFlatSpec with Matchers with LoneElement { // Import required data import OWLAxiomSpec._ -- cgit v1.2.3