diff options
author | Zipeng WU <zipeng.wu@sonarsource.com> | 2021-04-01 18:43:48 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-04-01 20:03:45 +0000 |
commit | 39abd3de73733b18e99c5e81ab7f2dec45d9aec7 (patch) | |
tree | 99969d4909635846b354ed00c8df95f56f3917b7 /sonar-plugin-api/src/test | |
parent | e953a52312c1809ee1b46bf5d3186be4cc21cd94 (diff) | |
download | sonarqube-39abd3de73733b18e99c5e81ab7f2dec45d9aec7.tar.gz sonarqube-39abd3de73733b18e99c5e81ab7f2dec45d9aec7.zip |
Revert "SONAR-14642 - SSF-142"
This reverts commit 0810d5dcbc8e49b4f064223cd271225acb397e83.
Diffstat (limited to 'sonar-plugin-api/src/test')
-rw-r--r-- | sonar-plugin-api/src/test/java/org/sonar/api/utils/text/JsonWriterTest.java | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sonar-plugin-api/src/test/java/org/sonar/api/utils/text/JsonWriterTest.java b/sonar-plugin-api/src/test/java/org/sonar/api/utils/text/JsonWriterTest.java index 9ae97fcfa35..ad523fb74f9 100644 --- a/sonar-plugin-api/src/test/java/org/sonar/api/utils/text/JsonWriterTest.java +++ b/sonar-plugin-api/src/test/java/org/sonar/api/utils/text/JsonWriterTest.java @@ -152,15 +152,7 @@ public class JsonWriterTest { underTest.beginObject() .prop("foo", "<hello \"world\">") .endObject().close(); - expect("{\"foo\":\"\\u003chello \\\"world\\\"\\u003e\"}"); - } - - @Test - public void escape_html_characters() { - underTest.beginObject() - .prop("foo", "123<>abc") - .endObject().close(); - expect("{\"foo\":\"123\\u003c\\u003eabc\"}"); + expect("{\"foo\":\"<hello \\\"world\\\">\"}"); } @Test |