Skip to content

Commit 8e02950

Browse files
committed
Fix test case
1 parent 255760d commit 8e02950

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/WebJobs.Script.Tests.Integration/WebHostEndToEnd/SamplesEndToEndTests_CSharp.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ public async Task HostStatus_AdminLevel_Succeeds()
231231
string content = await response.Content.ReadAsStringAsync();
232232
JObject jsonContent = JObject.Parse(content);
233233

234-
Assert.Equal(4, jsonContent.Properties().Count());
234+
Assert.Equal(5, jsonContent.Properties().Count());
235235
AssemblyFileVersionAttribute fileVersionAttr = typeof(HostStatus).Assembly.GetCustomAttribute<AssemblyFileVersionAttribute>();
236236
Assert.True(((string)jsonContent["id"]).Length > 0);
237237
string expectedVersion = fileVersionAttr.Version;
@@ -637,7 +637,7 @@ public async Task HttpTrigger_CustomRoute_ReturnsExpectedResponse()
637637
Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
638638
}
639639
}
640-
640+
641641
[Fact]
642642
public async Task HttpTriggerWithObject_Post_Succeeds()
643643
{

0 commit comments

Comments
 (0)