json schema: fix test data for correct schema matching type detection

This commit is contained in:
Irina.Chernushina
2017-07-03 13:44:07 +02:00
parent f035d3ee92
commit f5b90e65b8
@@ -92,7 +92,7 @@ public class JsonSchemaHighlightingTest extends DaemonAnalyzerTestCase {
" }\n" +
"}");
doTest(schema, "{\"prop\": [101, 102]}");
doTest(schema, "{\"prop\": [<warning descr=\"Less than a minimum 18.0\">16</warning>]}");
doTest(schema, "{\"prop\": [<warning descr=\"Less than a minimum 18\">16</warning>]}");
doTest(schema, "{\"prop\": [<warning descr=\"Type is not allowed\">\"test\"</warning>]}");
}