File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
samples/client/petstore/java/feign/src/test/java/io/swagger/client/api Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public class PetApiTest {
29
29
@ Before
30
30
public void setup () {
31
31
apiClient = new ApiClient ();
32
- apiClient .setBasePath ("https ://petstore.swagger.io:80/v2" );
32
+ apiClient .setBasePath ("http ://petstore.swagger.io:80/v2" );
33
33
api = apiClient .buildClient (PetApi .class );
34
34
localServer = new MockWebServer ();
35
35
localClient = new ApiClient ();
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public class StoreApiTest {
21
21
@ Before
22
22
public void setup () {
23
23
ApiClient apiClient = new ApiClient ();
24
- apiClient .setBasePath ("https ://petstore.swagger.io:80/v2" );
24
+ apiClient .setBasePath ("http ://petstore.swagger.io:80/v2" );
25
25
api = apiClient .buildClient (StoreApi .class );
26
26
}
27
27
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public class UserApiTest {
16
16
@ Before
17
17
public void setup () {
18
18
ApiClient apiClient = new ApiClient ();
19
- apiClient .setBasePath ("https ://petstore.swagger.io:80/v2" );
19
+ apiClient .setBasePath ("http ://petstore.swagger.io:80/v2" );
20
20
api = apiClient .buildClient (UserApi .class );
21
21
}
22
22
You can’t perform that action at this time.
0 commit comments