# HG changeset patch # User Christian Kamm # Date 1241949353 -7200 # Node ID 1f76d5b2f458388969ef0cf39f3f740562b5967c # Parent 9f94be6a5ace0b9704ecbc52cdbaddc493ffaff0 Fix typo in testcase run/typeid_79 diff -r 9f94be6a5ace -r 1f76d5b2f458 run/typeid_79.d --- a/run/typeid_79.d Sun May 10 10:56:43 2009 +0200 +++ b/run/typeid_79.d Sun May 10 11:55:53 2009 +0200 @@ -14,13 +14,13 @@ assert(!(ti is null)); assert(ti); assert(ti.tsize==(MyUnion[]).sizeof); - assert(ti.toString()=="dstress.run.typeid_78.MyUnion[]"); + assert(ti.toString()=="dstress.run.typeid_79.MyUnion[]"); TypeInfo_Array ta = cast(TypeInfo_Array) ti; assert(!(ta is null)); assert(ta); assert(ta.tsize==(MyUnion[]).sizeof); - assert(ta.toString()=="dstress.run.typeid_78.MyUnion[]"); + assert(ta.toString()=="dstress.run.typeid_79.MyUnion[]"); return 0; }