From 9ccfbe462c8dbad9324514d19eb179529c02172d Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Sun, 16 Jul 2017 17:53:33 -0400 Subject: [PATCH] Minor change to tests/serial --- sbt/src/sbt-test/tests/serial/build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbt/src/sbt-test/tests/serial/build.sbt b/sbt/src/sbt-test/tests/serial/build.sbt index eed39ce49..92523f098 100644 --- a/sbt/src/sbt-test/tests/serial/build.sbt +++ b/sbt/src/sbt-test/tests/serial/build.sbt @@ -1,11 +1,11 @@ val commonSettings = Seq( - libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % "test" + libraryDependencies += "org.scalatest" %% "scalatest" % "1.9.1" % Test ) lazy val root = (project in file(".")). aggregate(sub1, sub2). settings(inThisBuild(List( - organization := "com.softwaremill", + organization := "com.example", version := "0.0.1-SNAPSHOT", scalaVersion := "2.10.6" )),