Skip to content

Commit f433ad4

Browse files
committed
Use correct casing for Java
1 parent d43fc7a commit f433ad4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/java/org/openapitools/client/api/MediaApiTest.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public class MediaApiTest {
3434
private static UUID uuid;
3535
private String mediaId = JAVA_VERSION + "_" + RUNNER_OS + "_" + uuid + "_" + mediaFile;
3636
private File media = new File(mediaPath + mediaFile);
37-
private String content_type = "image/jpeg";
38-
private String cache_control = "no-cache";
37+
private String contentType = "image/jpeg";
38+
private String cacheControl = "no-cache";
3939

4040
@BeforeAll
4141
public static void setupBeforeClass() {
@@ -49,8 +49,8 @@ public void uploadMedia() throws ApiException {
4949
Basic.setPassword(BW_PASSWORD);
5050

5151
ApiResponse<Void> response = api.uploadMediaWithHttpInfo(BW_ACCOUNT_ID, this.mediaId, this.media,
52-
this.content_type,
53-
this.cache_control);
52+
this.contentType,
53+
this.cacheControl);
5454

5555
assertThat(response.getStatusCode(), is(204));
5656
System.out.println(this.mediaId);

0 commit comments

Comments
 (0)