diff options
author | Péter Dimitrov <[email protected]> | 2017-10-16 13:30:36 +0200 |
---|---|---|
committer | Péter Dimitrov <[email protected]> | 2017-10-23 15:53:29 +0200 |
commit | 57f8021105f1c213be674681f48d0c8e92935ff6 (patch) | |
tree | 58360c252322216e5afd883f9fe27b5a9c1aa620 /lib/stdlib/test/property_test | |
parent | 4a2358bbf4a4049a765aab435a31daeeffbbd677 (diff) | |
download | otp-57f8021105f1c213be674681f48d0c8e92935ff6.tar.gz otp-57f8021105f1c213be674681f48d0c8e92935ff6.tar.bz2 otp-57f8021105f1c213be674681f48d0c8e92935ff6.zip |
stdlib: Change handling of queries ["?" query]
Previously when parsing queries the first "?" was part of the
parsed query in the result Map. This behavior has been changed
to follow the patterns used with other URI components and to
not include the special character(s) that mark the start of a
specific component.
Diffstat (limited to 'lib/stdlib/test/property_test')
-rw-r--r-- | lib/stdlib/test/property_test/uri_string_recompose.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stdlib/test/property_test/uri_string_recompose.erl b/lib/stdlib/test/property_test/uri_string_recompose.erl index dad67cd4c1..97f9d727a0 100644 --- a/lib/stdlib/test/property_test/uri_string_recompose.erl +++ b/lib/stdlib/test/property_test/uri_string_recompose.erl @@ -271,7 +271,7 @@ port() -> query_map() -> - [$?| unicode()]. + unicode(). query_uri() -> |