aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/rsacomb/OWLClassSpec.scala
diff options
context:
space:
mode:
authorStefano Germano <stefanogermano0@gmail.com>2020-10-19 16:15:25 +0200
committerStefano Germano <stefanogermano0@gmail.com>2020-10-19 16:15:25 +0200
commitb4f19557e648d96fc1a87677ea3c02143a525cbd (patch)
treeb167adbd9605e8f3b11e0bc3271be88b1cf0d180 /src/test/scala/rsacomb/OWLClassSpec.scala
parent014fda84a13620b64597f4bbd6d27afcb929e0f4 (diff)
downloadRSAComb-b4f19557e648d96fc1a87677ea3c02143a525cbd.tar.gz
RSAComb-b4f19557e648d96fc1a87677ea3c02143a525cbd.zip
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).
Diffstat (limited to 'src/test/scala/rsacomb/OWLClassSpec.scala')
-rw-r--r--src/test/scala/rsacomb/OWLClassSpec.scala6
1 files changed, 4 insertions, 2 deletions
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 @@
1package rsacomb 1package rsacomb
2 2
3import org.scalatest.{FlatSpec, Matchers, LoneElement} 3import org.scalatest.LoneElement
4import org.scalatest.flatspec.AnyFlatSpec
5import org.scalatest.matchers.should.Matchers
4 6
5import uk.ac.manchester.cs.owl.owlapi.{ 7import uk.ac.manchester.cs.owl.owlapi.{
6 OWLClassImpl, 8 OWLClassImpl,
@@ -99,7 +101,7 @@ object OWLClassSpec {
99 ) 101 )
100} // object OWLClassSpec 102} // object OWLClassSpec
101 103
102class OWLClassSpec extends FlatSpec with Matchers with LoneElement { 104class OWLClassSpec extends AnyFlatSpec with Matchers with LoneElement {
103 // Import required data 105 // Import required data
104 import OWLClassSpec._ 106 import OWLClassSpec._
105 107