Skip to content

Commit

Permalink
Merge pull request #1159 from laedit/patch-1
Browse files Browse the repository at this point in the history
Fix IgnoreTestCase
  • Loading branch information
forki committed Mar 3, 2016
2 parents 206ef58 + 9611ce8 commit 28f0210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/FakeLib/AppVeyor.fs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ let TestFailed testSuiteName testCaseName message details =
(EncapsulateSpecialChars message) (EncapsulateSpecialChars details)

/// Ignores the test case.
let IgnoreTestCase testSuiteName testCaseName message = sendToAppVeyor <| sprintf "UpdateTest \"%s\" -Outcome Passed" (testSuiteName + " - " + testCaseName)
let IgnoreTestCase testSuiteName testCaseName message = sendToAppVeyor <| sprintf "UpdateTest \"%s\" -Outcome Ignored" (testSuiteName + " - " + testCaseName)

/// Reports a succeeded test.
let TestSucceeded testSuiteName testCaseName = sendToAppVeyor <| sprintf "UpdateTest \"%s\" -Outcome Passed" (testSuiteName + " - " + testCaseName)
Expand Down

0 comments on commit 28f0210

Please sign in to comment.