From eac0cc742398641c0c5a1fab8fc92a9c1374899e Mon Sep 17 00:00:00 2001 From: Stephen Weatherford Date: Wed, 9 Oct 2024 16:59:41 -0700 Subject: [PATCH] fix test --- src/Bicep.LangServer.IntegrationTests/CompletionTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bicep.LangServer.IntegrationTests/CompletionTests.cs b/src/Bicep.LangServer.IntegrationTests/CompletionTests.cs index 3751f92b8ca..359a8efdf50 100644 --- a/src/Bicep.LangServer.IntegrationTests/CompletionTests.cs +++ b/src/Bicep.LangServer.IntegrationTests/CompletionTests.cs @@ -4869,7 +4869,7 @@ public async Task Resource_utility_type_offered_as_completion_if_enabled() var updated = file.ApplyCompletion(completions, "resource"); updated.Should().HaveSourceText(""" - type acct = resource<|> + type acct = resource<'|'> """); }