File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/NHibernate.Test/NHSpecificTest/NH3392 Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 1
- using System . Collections . Generic ;
2
1
using System . Linq ;
3
2
using NHibernate . Linq ;
4
3
using NUnit . Framework ;
@@ -37,7 +36,7 @@ public void ExpandSubCollectionWithEmbeddedCompositeID()
37
36
var jimmy = new Kid { Name = "Jimmy" , MumId = jenny . Id , DadId = benny . Id } ;
38
37
s . Save ( jimmy ) ;
39
38
var timmy = new Kid { Name = "Timmy" , MumId = jenny . Id , DadId = lenny . Id } ;
40
- s . Save ( jimmy ) ;
39
+ s . Save ( timmy ) ;
41
40
s . Flush ( ) ;
42
41
}
43
42
@@ -64,7 +63,7 @@ public void ExpandSubCollectionWithCompositeID()
64
63
var jimmy = new FriendOfTheFamily { Name = "Jimmy" , Id = new MumAndDadId { MumId = jenny . Id , DadId = benny . Id } } ;
65
64
s . Save ( jimmy ) ;
66
65
var timmy = new FriendOfTheFamily { Name = "Timmy" , Id = new MumAndDadId { MumId = jenny . Id , DadId = lenny . Id } } ;
67
- s . Save ( jimmy ) ;
66
+ s . Save ( timmy ) ;
68
67
s . Flush ( ) ;
69
68
}
70
69
You can’t perform that action at this time.
0 commit comments