Added integration tests for CacheInstructionRepository.

This commit is contained in:
Andy Butland
2021-03-07 19:35:36 +01:00
parent 6db390e1d5
commit dc21e9ee8a
4 changed files with 156 additions and 3 deletions

View File

@@ -51,7 +51,7 @@ namespace Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement
}
/// <inheritdoc/>
public IEnumerable<CacheInstruction> GetInstructions(int lastId, int maxNumberToRetrieve)
public IEnumerable<CacheInstruction> GetPendingInstructions(int lastId, int maxNumberToRetrieve)
{
Sql<ISqlContext> sql = AmbientScope.SqlContext.Sql().SelectAll()
.From<CacheInstructionDto>()