Corrected an assertion.

This commit is contained in:
the_fiddler 2008-01-20 22:12:04 +00:00
parent cf0747df6c
commit ec9b9fd59c

View file

@ -60,7 +60,7 @@ namespace Examples
Trace.WriteLine("IsCurrent = true...");
context.IsCurrent = true;
Trace.Assert(!context.IsCurrent);
Trace.Assert(context.IsCurrent);
context.Process();