File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
tests/integration/contexts Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,7 @@ use crate::integration::environment::TestEnv;
33
44#[ tokio:: test]
55async fn it_should_load_the_about_page_with_information_about_the_api ( ) {
6- let env = TestEnv :: running ( ) . await ;
7- let client = env. unauthenticated_client ( ) ;
6+ let client = TestEnv :: running ( ) . await . unauthenticated_client ( ) ;
87
98 let response = client. about ( ) . await ;
109
@@ -14,8 +13,7 @@ async fn it_should_load_the_about_page_with_information_about_the_api() {
1413
1514#[ tokio:: test]
1615async fn it_should_load_the_license_page_at_the_api_entrypoint ( ) {
17- let env = TestEnv :: running ( ) . await ;
18- let client = env. unauthenticated_client ( ) ;
16+ let client = TestEnv :: running ( ) . await . unauthenticated_client ( ) ;
1917
2018 let response = client. license ( ) . await ;
2119
You can’t perform that action at this time.
0 commit comments