This commit updates the specs to use URI.encode_www_form_component instead of the deprecated URI.escape method.
Replace URI.escape with URI.encode_www_form_component
Maintain existing test behavior and expectations
Ensure proper URL encoding for document titles in test requests
This update removes usage of a deprecated method, improving the codebase's compatibility with newer Ruby versions while maintaining the original functionality of the tests.
This commit updates the specs to use
URI.encode_www_form_component
instead of the deprecatedURI.escape
method.URI.escape
withURI.encode_www_form_component
This update removes usage of a deprecated method, improving the codebase's compatibility with newer Ruby versions while maintaining the original functionality of the tests.