Skip to content

Commit

Permalink
Fixed unit test, enabling the ReferenceLinks feature for the GetEntit…
Browse files Browse the repository at this point in the history
…iesBase unit test around generated HQL queries.
  • Loading branch information
gmcelhanon committed Nov 25, 2024
1 parent 55153eb commit 87e25ac
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,18 @@ protected override void Act()
_sessionFactory,
_domainModelProvider,
_parameterListSetter,
_contextProvider,
new ApiSettings(),
_contextProvider,
new ApiSettings()
{
Features =
[
new()
{
Name = "ReferenceLinks",
IsEnabled = true
}
]
},
new SqlServerDialect(),
DatabaseEngine.SqlServer,
Stub<IEntityDeserializer>());
Expand Down

0 comments on commit 87e25ac

Please sign in to comment.