Skip to content
Prev Previous commit
Next Next commit
Fix CI
  • Loading branch information
anthony-c-martin committed Jun 26, 2025
commit 1dc26ae67f612a1ea79f0c45f5a2b86ac008fe03
1 change: 1 addition & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@
"cpus",
"cref",
"Dapr",
"decompile",
"deduplication",
"deletesas",
"deserializable",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/bicep/Azure.ResourceManager.Resources.Bicep",
"Tag": "net/bicep/Azure.ResourceManager.Resources.Bicep_2d8d25c2f2"
"Tag": "net/bicep/Azure.ResourceManager.Resources.Bicep_f735123855"
}
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public async Task Decompile_generates_valid_bicep_code()
}
}
}
"""));
""".Replace("\r\n", "\n")));

var mainBicep = response.Value.Files.Single(x => x.Path == response.Value.EntryPoint);
Assert.AreEqual("param foo string\n\noutput foo string = foo\n", mainBicep.Contents);
Expand Down