Skip to content

Commit

Permalink
New objects graph test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
artema committed Oct 6, 2013
1 parent eee5640 commit 2755906
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Examples/ExampleClient/src/ExampleClient.mxml
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,14 @@
new ProductDto(92)
];
user1.products.push(user1.products[0]);
var user2:User = new User(2);
user2.name = "User #2";
user2.is_active = true;
user2.products = user1.products;
return [user1,user2];
return [user1,user1,user2];
}
]]>
</fx:Script>
Expand Down

0 comments on commit 2755906

Please sign in to comment.