We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9691ad6 commit e1be572Copy full SHA for e1be572
1 file changed
src/test/java/wtx/woocommerce/api/client/OrdersApiTest.java
@@ -26,7 +26,7 @@ public class OrdersApiTest {
26
27
private static final String SEPARATOR = "-------------------------------------------------------------------------------";
28
private MockWebServer mockWebServer;
29
- private ApiClient apiClient;
+ private WooCommerceApiClient apiClient;
30
private OrdersApi ordersApi;
31
private JSON json;
32
@@ -52,7 +52,7 @@ void setUp() throws IOException {
52
mockWebServer.start();
53
54
// Create and configure ApiClient with logging enabled
55
- apiClient = new ApiClient();
+ apiClient = new WooCommerceApiClient(true);
56
apiClient.setDebugging(true);
57
apiClient.setBasePath(mockWebServer.url("/").toString());
58
0 commit comments