Skip to content

Commit

Permalink
Disabling adjustmentrule blob sanity check till code is converged
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorHofer committed Jul 21, 2017
1 parent 3b7afa9 commit ae66307
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ private static void SanityCheckBlob(object obj, string[] blobs)
// WeakReference<Point> and HybridDictionary with default constructor are generating
// different blobs at runtime for some obscure reason. Excluding those from the check.
!(obj is WeakReference<Point>) &&
!(obj is Collections.Specialized.HybridDictionary))
!(obj is Collections.Specialized.HybridDictionary) &&
!(obj is TimeZoneInfo.AdjustmentRule))
{
string runtimeBlob = SerializeObjectToBlob(obj, FormatterAssemblyStyle.Full);

Expand Down

0 comments on commit ae66307

Please sign in to comment.