Skip to content

Commit

Permalink
fix scalatest
Browse files Browse the repository at this point in the history
  • Loading branch information
sullis committed Jul 29, 2024
1 parent 7822d8e commit cfcb80b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ libraryDependencies ++= Seq(
"ch.qos.logback" % "logback-classic" % logbackVersion,
"ch.qos.logback" % "logback-core" % logbackVersion,
"com.google.guava" % "guava" % "32.1.2-jre",
"org.mockito" %% "mockito-scala-scalatest" % "1.17.37" % Test,
"org.scalatestplus" %% "mockito-5-12" % "3.2.19.0" % Test,
"org.scalatest" %% "scalatest" % "3.2.19" % Test
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@ object HelloWorldApp extends App {

System.out.println("Hello world")

printArgs()

def printArgs(): Unit = {

if (args != null) {
args.foreach { arg =>
System.out.println(s"arg: ${arg}")
}
Expand Down

0 comments on commit cfcb80b

Please sign in to comment.