Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
JFriel committed May 14, 2024
1 parent eb039d0 commit 4967576
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ private static DataTable GetResultForBuilder(AggregateBuilder builder, Discovere

private static void AddWHEREToBuilder_CategoryIsTOrNumberGreaterThan42(AggregateBuilder builder, DatabaseType type)
{
var syntaxHelper = QuerySyntaxHelperFactory.Create(type);
var syntaxHelper = new QuerySyntaxHelperFactory().Create(type);
var declaration = syntaxHelper.GetParameterDeclaration("@category", new DatabaseTypeRequest(typeof(string), 1));

var repo = new MemoryCatalogueRepository();
Expand Down
2 changes: 1 addition & 1 deletion Tests.Common/Scenarios/TestsRequiringA.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ protected DiscoveredTable CreateDataset<T>(DiscoveredDatabase db, int people, in
protected DiscoveredTable CreateDataset<T>(DiscoveredDatabase db, PersonCollection people, int rows, Random r)
where T : IDataGenerator
{
var instance = DataGeneratorFactory.Create<T>(r);
var instance = new DataGeneratorFactory().Create<T>(r);

var dt = instance.GetDataTable(people, rows);

Expand Down

0 comments on commit 4967576

Please sign in to comment.