Skip to content

Commit 3af52ae

Browse files
committed
i18n fix
1 parent bf30a54 commit 3af52ae

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

dsc_lib/locales/en-us.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ callingExtension = "Calling extension '%{extension}' to discover resources"
9797
extensionFoundResources = "Extension '%{extension}' found %{count} resources"
9898
invalidManifestVersion = "Manifest '%{path}' has invalid version: %{err}"
9999
importExtensionsEmpty = "Import extension '%{extension}' has no import extensions defined"
100-
importNotSupported = "Import is not supported by extension '%{extension}' for file '%{file}'"
101100

102101
[dscresources.commandResource]
103102
invokeGet = "Invoking get for '%{resource}'"

extensions/bicep/bicep.tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ BeforeDiscovery {
1212
Describe 'Bicep extension tests' -Skip:(!$foundBicep) {
1313
It 'Example bicep file should work' {
1414
$bicepFile = Resolve-Path -Path "$PSScriptRoot\..\..\dsc\examples\hello_world.dsc.bicep"
15-
$out = dsc -l debug config get -f $bicepFile 2>$TestDrive/error.log | ConvertFrom-Json
15+
$out = dsc -l trace config get -f $bicepFile 2>$TestDrive/error.log | ConvertFrom-Json
1616
$LASTEXITCODE | Should -Be 0 -Because (Get-Content -Path $TestDrive/error.log -Raw | Out-String)
1717
$out.results[0].result.actualState.output | Should -BeExactly 'Hello, world!'
1818
(Get-Content -Path $TestDrive/error.log -Raw) | Should -Match "Importing file '$bicepFile' with extension 'Microsoft.DSC.Extension/Bicep'"

0 commit comments

Comments
 (0)