summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/AssemblyTesting.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-05-21 21:31:59 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-05-21 21:31:59 -0700
commitfa655ce962d75f076a80b005490de17d7f9d2bfe (patch)
treeb50cf523a79f059fad7e2241a93246c548b7785e /src/DotNetOpenAuth.Test/AssemblyTesting.cs
parent683b55a61af3c7bfa11b74a5cc4efd3556e59613 (diff)
parent168d4ca66ae025408995315e30bae355deb06d41 (diff)
downloadDotNetOpenAuth-fa655ce962d75f076a80b005490de17d7f9d2bfe.zip
DotNetOpenAuth-fa655ce962d75f076a80b005490de17d7f9d2bfe.tar.gz
DotNetOpenAuth-fa655ce962d75f076a80b005490de17d7f9d2bfe.tar.bz2
Merge branch 'v3.0' into v3.1
Diffstat (limited to 'src/DotNetOpenAuth.Test/AssemblyTesting.cs')
-rw-r--r--src/DotNetOpenAuth.Test/AssemblyTesting.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/AssemblyTesting.cs b/src/DotNetOpenAuth.Test/AssemblyTesting.cs
index 1d8f521..d0868d2 100644
--- a/src/DotNetOpenAuth.Test/AssemblyTesting.cs
+++ b/src/DotNetOpenAuth.Test/AssemblyTesting.cs
@@ -16,9 +16,9 @@ namespace DotNetOpenAuth.Test {
Contract.ContractFailed += (sender, e) => {
if (e.FailureKind == ContractFailureKind.Precondition) {
// Currently we ignore these so that the regular ErrorUtilities can kick in.
- e.Handled = true;
+ e.SetHandled();
} else {
- e.Handled = true;
+ e.SetHandled();
Assert.Fail(e.FailureKind.ToString() + ": " + e.Message);
}
};