Skip to content

Commit

Permalink
Fix failing tests caused by version update
Browse files Browse the repository at this point in the history
  • Loading branch information
cgillum committed Oct 10, 2024
1 parent c4498c4 commit b9d6891
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 @@ -21,7 +21,7 @@ public SqlTargetScaler(string taskHubName, SqlMetricsProvider sqlMetricsProvider
this.TargetScalerDescriptor = new TargetScalerDescriptor(id);
}

public TargetScalerDescriptor TargetScalerDescriptor { get; private set; }
public TargetScalerDescriptor TargetScalerDescriptor { get; }

public async Task<TargetScalerResult> GetScaleResultAsync(TargetScalerContext context)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ async Task ValidateDatabaseSchemaAsync(TestDatabase database, string schemaName
database.ConnectionString,
schemaName);
Assert.Equal(1, currentSchemaVersion.Major);
Assert.Equal(3, currentSchemaVersion.Minor);
Assert.Equal(4, currentSchemaVersion.Minor);
Assert.Equal(0, currentSchemaVersion.Patch);
}

Expand Down

0 comments on commit b9d6891

Please sign in to comment.