From 5fd1b1a94dab85d0d02d4fd46b2b8e96186c6ea7 Mon Sep 17 00:00:00 2001 From: Damian Jansen Date: Sun, 31 Jul 2016 13:56:43 +1000 Subject: [PATCH] Basic JSON support --- .../java/org/zanata/rest/client/FileResourceClientTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zanata-rest-client/src/test/java/org/zanata/rest/client/FileResourceClientTest.java b/zanata-rest-client/src/test/java/org/zanata/rest/client/FileResourceClientTest.java index e9be84ec..ae8d299a 100644 --- a/zanata-rest-client/src/test/java/org/zanata/rest/client/FileResourceClientTest.java +++ b/zanata-rest-client/src/test/java/org/zanata/rest/client/FileResourceClientTest.java @@ -81,7 +81,7 @@ public void testServerAcceptedType() { } assertThat(allExtension, Matchers.containsInAnyOrder("dtd", "pot", "txt", "idml", "html", "htm", "odt", "odp", "odg", "ods", - "srt", "sbt", "sub", "vtt", "properties", "xlf", "ts")); + "srt", "sbt", "sub", "vtt", "properties", "xlf", "ts", "json")); } @Test @@ -95,7 +95,7 @@ public void testFileTypeInfoList() { } assertThat(allExtension, Matchers.containsInAnyOrder("dtd", "pot", "txt", "idml", "html", "htm", "odt", "odp", "odg", "ods", - "srt", "sbt", "sub", "vtt", "properties", "xlf", "ts")); + "srt", "sbt", "sub", "vtt", "properties", "xlf", "ts", "json")); } @Test