leadpony / jsonp-test-suite

Test Suite for implementations of Jakarta JSON Processing API (JSON-P)
Apache License 2.0
3 stars 2 forks source link

G_CLEF string should escape the slashes #6

Closed ssilverman closed 3 years ago

ssilverman commented 3 years ago

https://github.com/leadpony/jsonp-test-suite/blob/5efa9962d5a0452a00e8a2b2546b541991be5190/src/main/java/org/leadpony/jsonp/testsuite/tests/JsonValueTestCase.java#L58

I believe the string should be "\\ud834\\udd1e\". i.e. escape the slashes because all the other test cases do.

leadpony commented 3 years ago

@ssilverman The Reference Implementation does not escape the G clef character (code point: U+1D11E), which belongs to the unescaped range %x5D-10FFFF defined in RFC 7159.

leadpony commented 3 years ago

More discussion continues at #4 .