File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
test/WebJobs.Script.Tests.Integration/WebHostEndToEnd Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ public async Task HostStatus_AdminLevel_Succeeds()
231
231
string content = await response . Content . ReadAsStringAsync ( ) ;
232
232
JObject jsonContent = JObject . Parse ( content ) ;
233
233
234
- Assert . Equal ( 4 , jsonContent . Properties ( ) . Count ( ) ) ;
234
+ Assert . Equal ( 5 , jsonContent . Properties ( ) . Count ( ) ) ;
235
235
AssemblyFileVersionAttribute fileVersionAttr = typeof ( HostStatus ) . Assembly . GetCustomAttribute < AssemblyFileVersionAttribute > ( ) ;
236
236
Assert . True ( ( ( string ) jsonContent [ "id" ] ) . Length > 0 ) ;
237
237
string expectedVersion = fileVersionAttr . Version ;
@@ -637,7 +637,7 @@ public async Task HttpTrigger_CustomRoute_ReturnsExpectedResponse()
637
637
Assert . Equal ( HttpStatusCode . NotFound , response . StatusCode ) ;
638
638
}
639
639
}
640
-
640
+
641
641
[ Fact ]
642
642
public async Task HttpTriggerWithObject_Post_Succeeds ( )
643
643
{
You can’t perform that action at this time.
0 commit comments