Skip to content

Commit e0d573a

Browse files
committed
Fix Java test
1 parent e959101 commit e0d573a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clients/java/src/test/java/com/phrase/client/api/LocalesApiTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,12 +171,13 @@ public void localeDownloadTest() throws ApiException, IOException, InterruptedEx
171171
Object customMetadataFilters = null;
172172
String translationKeyPrefix = null;
173173
Boolean filterByPrefix = null;
174+
List<String> localeIds = null;
174175
File response = api.localeDownload(projectId, id, xPhraseAppOTP, ifModifiedSince, ifNoneMatch,
175176
branch, fileFormat, tags, tag, includeEmptyTranslations, excludeEmptyZeroForms,
176177
includeTranslatedKeys, keepNotranslateTags, convertEmoji, formatOptions, encoding,
177178
skipUnverifiedTranslations, includeUnverifiedTranslations, useLastReviewedVersion,
178179
fallbackLocaleId, sourceLocaleId, translationKeyPrefix, filterByPrefix,
179-
customMetadataFilters);
180+
customMetadataFilters, localeIds);
180181

181182
String fileContents = new String(java.nio.file.Files.readAllBytes(response.toPath()));
182183
Assert.assertEquals("Correct file contents", fileContents, body);

0 commit comments

Comments
 (0)