diff --git a/clients/java/src/test/java/com/phrase/client/api/UploadsApiTest.java b/clients/java/src/test/java/com/phrase/client/api/UploadsApiTest.java index 7b3e6832..73af8b24 100644 --- a/clients/java/src/test/java/com/phrase/client/api/UploadsApiTest.java +++ b/clients/java/src/test/java/com/phrase/client/api/UploadsApiTest.java @@ -87,6 +87,14 @@ public void uploadCreateTest() throws ApiException, IOException, InterruptedExce mockBackend.enqueue(mockResponse); + public class FormatOptions { + public boolean unescape_tags = false; + + public FormatOptions(boolean val) { + unescape_tags = val; + } + } + String projectId = "projectId_example"; String xPhraseAppOTP = null; String branch = "branch_example"; @@ -104,7 +112,7 @@ public void uploadCreateTest() throws ApiException, IOException, InterruptedExce Boolean skipUnverification = null; String fileEncoding = null; Object localeMapping = null; - Object formatOptions = null; + Object formatOptions = new Formatoptions(true); Boolean autotranslate = null; Boolean markReviewed = null; Boolean tagOnlyAffectedKeys = null;