This commit is contained in:
Jamie Magee 2022-08-16 11:52:44 -07:00 коммит произвёл GitHub
Родитель 06e5188844
Коммит 981c4ed2bc
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -459,10 +459,6 @@ dotnet_naming_rule.parameters_rule.severity = warning
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers
##########################################
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1001.md
# Commas should not be preceded by whitespace
dotnet_diagnostic.SA1001.severity = suggestion
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1005.md
# Single line comment should begin with a space
dotnet_diagnostic.SA1005.severity = suggestion

Просмотреть файл

@ -215,7 +215,7 @@ namespace Microsoft.ComponentDetection.Detectors.Tests
.Throws(new IOException());
this.mockDockerService.Setup(service => service.InspectImageAsync(It.IsAny<string>(), It.IsAny<CancellationToken>()))
// Specify BaseImageRef = scratch to verify that cope
.ReturnsAsync(new ContainerDetails { Id = 1, ImageId = NodeLatestDigest, Layers = Enumerable.Empty<DockerLayer>() , BaseImageRef = "scratch"});
.ReturnsAsync(new ContainerDetails { Id = 1, ImageId = NodeLatestDigest, Layers = Enumerable.Empty<DockerLayer>(), BaseImageRef = "scratch"});
await this.TestLinuxContainerDetector();
}
}