From b10896bf64efe2a0dc628b85c1712621599713c9 Mon Sep 17 00:00:00 2001 From: rollinsruss Date: Fri, 17 Jun 2011 09:00:37 -0700 Subject: [PATCH] Tests.Arguments references changed to Tests.Argument per http://harrah.github.com/xsbt/latest/api/sbt/Tests$.html --- Testing.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Testing.md b/Testing.md index 61cd03d..7fc695f 100644 --- a/Testing.md +++ b/Testing.md @@ -75,16 +75,16 @@ Arguments to the test framework may be provided on the command line to the `test ``` -To specify test framework arguments as part of the build, add options constructed by `Tests.Arguments`: +To specify test framework arguments as part of the build, add options constructed by `Tests.Argument`: ```scala -testOptions in Test += Tests.Arguments("-d", "-g") +testOptions in Test += Tests.Argument("-d", "-g") ``` To specify them for a specific test framework only: ```scala -testOptions in Test += Tests.Arguments(TestFrameworks.ScalaCheck, "-d", "-g") +testOptions in Test += Tests.Argument(TestFrameworks.ScalaCheck, "-d", "-g") ``` ## Setup and Cleanup