Commit 5d22fe00 authored by justcoding121's avatar justcoding121

comment out console write

parent 16f10a4f
......@@ -21,7 +21,7 @@ namespace Titanium.Web.Proxy.UnitTests
var mgr = new CertificateManager(new Lazy<Action<Exception>>(() => (e =>
{
Console.WriteLine(e.ToString() + e.InnerException != null ? e.InnerException.ToString() : string.Empty);
//Console.WriteLine(e.ToString() + e.InnerException != null ? e.InnerException.ToString() : string.Empty);
})).Value);
mgr.CertificateEngine = CertificateEngine.BouncyCastle;
......@@ -51,7 +51,7 @@ namespace Titanium.Web.Proxy.UnitTests
var mgr = new CertificateManager(new Lazy<Action<Exception>>(() => (e =>
{
Console.WriteLine(e.ToString() + e.InnerException != null ? e.InnerException.ToString() : string.Empty);
//Console.WriteLine(e.ToString() + e.InnerException != null ? e.InnerException.ToString() : string.Empty);
})).Value);
mgr.CertificateEngine = CertificateEngine.DefaultWindows;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment