Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scalatest to 3.1.0 #28

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ lazy val loggingVersion = "3.9.2"
lazy val rdf4jVersion = "3.0.0"
lazy val scalacheckVersion = "1.14.0"
lazy val scalacticVersion = "3.0.8"
lazy val scalaTestVersion = "3.0.8"
lazy val scalaTestVersion = "3.1.0"
lazy val scalaGraphVersion = "1.11.5"
lazy val scalatagsVersion = "0.6.7"
lazy val scallopVersion = "3.3.1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ package es.weso.typing
import org.scalatest._
import cats._
import cats.implicits._
import TypingResult._
import TypingResult._
import org.scalatest.funspec.AnyFunSpec
import org.scalatest.matchers.should.Matchers

class TypingResultTest extends FunSpec with Matchers {
class TypingResultTest extends AnyFunSpec with Matchers {

case class Er(s: String)
case class Ev(e: String)
Expand Down
5 changes: 3 additions & 2 deletions modules/typing/src/test/scala/es/weso/typing/TypingTest.scala
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package es.weso.typing

import org.scalatest.{FunSpec, Matchers}
import org.scalatest.funspec.AnyFunSpec
import org.scalatest.matchers.should.Matchers

/**
* Created by Labra on 21/11/2016.
*/
class TypingTest extends FunSpec with Matchers {
class TypingTest extends AnyFunSpec with Matchers {

case class K(s: String)
case class V(s: String)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ import cats._
import cats.implicits._
import io.circe.syntax._
import io.circe.parser._
import JsonCompare._
import JsonCompare._
import org.scalatest.funspec.AnyFunSpec

trait JsonTest extends FunSpec {
trait JsonTest extends AnyFunSpec {

def decodeJsonSchemaEncodeEquals[A: Encoder: Decoder: Show](str: String): Unit = {
for {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package es.weso.utils.test
import io.circe.Json
import org.scalatest._
import org.scalatest.funspec.AnyFunSpec
import org.scalatest.matchers.should.Matchers

class JsonMatchersTest extends FunSpec with Matchers with JsonMatchers {
class JsonMatchersTest extends AnyFunSpec with Matchers with JsonMatchers {

describe("Simple Json test") {
it(s"Should check two json values") {
Expand Down