File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
identity-model/test/IdentityModel.Tests/HttpClientExtensions Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ public async Task Non_json_response_should_set_raw()
171171 [ Fact ]
172172 public async Task Request_without_body_content_should_use_GET ( )
173173 {
174- var document = await File . ReadAllTextAsync ( FileName . Create ( "success_userinfo_response.jwt" ) ) ;
174+ var document = File . ReadAllText ( FileName . Create ( "success_userinfo_response.jwt" ) ) ;
175175 var handler = new NetworkHandler ( document , HttpStatusCode . OK )
176176 {
177177 MediaType = "application/jwt"
@@ -194,7 +194,7 @@ public async Task Request_without_body_content_should_use_GET()
194194 [ Fact ]
195195 public async Task Request_with_body_content_should_use_POST ( )
196196 {
197- var document = await File . ReadAllTextAsync ( FileName . Create ( "success_userinfo_response.jwt" ) ) ;
197+ var document = File . ReadAllText ( FileName . Create ( "success_userinfo_response.jwt" ) ) ;
198198 var handler = new NetworkHandler ( document , HttpStatusCode . OK )
199199 {
200200 MediaType = "application/jwt"
You can’t perform that action at this time.
0 commit comments