We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cefb7da commit c9d31f7Copy full SHA for c9d31f7
src/FluentNHibernate.Specs/Automapping/AutomappingSpecs.NestedClasses.cs
@@ -22,8 +22,8 @@ public class when_the_automapper_is_told_to_map_an_entity_with_a_nested_entity
22
It should_map_the_entity = () =>
23
mappings.ShouldContain(x => x.Type == typeof(Order));
24
25
- It should_not_automap_the_nested_entity_per_default = () =>
26
- mappings.ShouldNotContain(x => x.Type == typeof(Order.OrderLine));
+ It should_automap_the_nested_entity_per_default = () =>
+ mappings.ShouldContain(x => x.Type == typeof(Order.OrderLine));
27
28
static AutoPersistenceModel mapper;
29
static IEnumerable<ClassMapping> mappings;
0 commit comments