Skip to content

Commit

Permalink
Fix thinko
Browse files Browse the repository at this point in the history
svn path=/trunk/mcs/; revision=54689
  • Loading branch information
harinath committed Dec 21, 2005
1 parent 7e877a1 commit 121d4e3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -96,7 +96,7 @@ void ReadData()
expected.CheckEquals (actual, "List");

for (int i = 0; i < actual.children.Length - 1; ++i)
if (actual.children [i] != actual.children [i+1])
if (actual.children [i].next != actual.children [i+1])
Assert.Fail ("Deserialization did not restore pointer graph");

BinderTester_A bta = CreateBinderTestData();
Expand Down

0 comments on commit 121d4e3

Please sign in to comment.