File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public async Task ShouldWorkWhenLoadingRequestWithPostData(string url)
5757 {
5858 var response = await browser . WaitForInitialLoadAsync ( ) ;
5959
60- Assert . True ( response . Success ) ;
60+ Assert . True ( response . Success , $ "Initial Load Error Code: { response . ErrorCode . ToString ( ) } Http Status Code: { response . HttpStatusCode } " ) ;
6161
6262 var request = new Request
6363 {
@@ -80,7 +80,7 @@ public async Task ShouldWorkWhenLoadingRequestWithPostData(string url)
8080 var navEntry = await browser . GetVisibleNavigationEntryAsync ( ) ;
8181
8282 Assert . Equal ( ( int ) HttpStatusCode . OK , navEntry . HttpStatusCode ) ;
83- Assert . True ( navEntry . HasPostData ) ;
83+ Assert . True ( navEntry . HasPostData , "Has PostData" ) ;
8484
8585 var source = await browser . GetTextAsync ( ) ;
8686
You can’t perform that action at this time.
0 commit comments