@@ -41,14 +41,14 @@ public async Task Run_Default_Successful()
4141 await project . DotnetRun (
4242 async ( httpClient , httpsClient ) =>
4343 {
44- var httpResponse = await httpClient . GetAsync ( "status/live " ) ;
44+ var httpResponse = await httpClient . GetAsync ( "status" ) ;
4545 Assert . Equal ( HttpStatusCode . OK , httpResponse . StatusCode ) ;
4646
47- var liveResponse = await httpsClient . GetAsync ( "status/live " ) ;
48- Assert . Equal ( HttpStatusCode . OK , liveResponse . StatusCode ) ;
47+ var statusResponse = await httpsClient . GetAsync ( "status" ) ;
48+ Assert . Equal ( HttpStatusCode . OK , statusResponse . StatusCode ) ;
4949
50- var readyResponse = await httpsClient . GetAsync ( "status/ready " ) ;
51- Assert . Equal ( HttpStatusCode . OK , readyResponse . StatusCode ) ;
50+ var statusSelfResponse = await httpsClient . GetAsync ( "status/self " ) ;
51+ Assert . Equal ( HttpStatusCode . OK , statusSelfResponse . StatusCode ) ;
5252
5353 var carsResponse = await httpsClient . GetAsync ( "/cars" ) ;
5454 Assert . Equal ( HttpStatusCode . OK , carsResponse . StatusCode ) ;
@@ -85,11 +85,11 @@ public async Task Run_HealthCheckFalse_Successful()
8585 await project . DotnetRun (
8686 async httpClient =>
8787 {
88- var liveResponse = await httpClient . GetAsync ( "status/live " ) ;
89- Assert . Equal ( HttpStatusCode . NotFound , liveResponse . StatusCode ) ;
88+ var statusResponse = await httpClient . GetAsync ( "status" ) ;
89+ Assert . Equal ( HttpStatusCode . NotFound , statusResponse . StatusCode ) ;
9090
91- var readyResponse = await httpClient . GetAsync ( "status/ready " ) ;
92- Assert . Equal ( HttpStatusCode . NotFound , readyResponse . StatusCode ) ;
91+ var statusSelfResponse = await httpClient . GetAsync ( "status/self " ) ;
92+ Assert . Equal ( HttpStatusCode . NotFound , statusSelfResponse . StatusCode ) ;
9393 } ) ;
9494 }
9595 }
@@ -111,8 +111,8 @@ public async Task Run_HttpsEverywhereFalse_Successful()
111111 await project . DotnetRun (
112112 async httpClient =>
113113 {
114- var httpResponse = await httpClient . GetAsync ( "status/live " ) ;
115- Assert . Equal ( HttpStatusCode . OK , httpResponse . StatusCode ) ;
114+ var statusResponse = await httpClient . GetAsync ( "status" ) ;
115+ Assert . Equal ( HttpStatusCode . OK , statusResponse . StatusCode ) ;
116116 } ) ;
117117 }
118118 }
0 commit comments