We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb3d889 commit 1348243Copy full SHA for 1348243
sdk-java/src/test/java/ly/count/sdk/java/internal/UtilsTests.java
@@ -208,9 +208,9 @@ public void urlencode_empty() {
208
*/
209
@Test
210
public void urlencode_symbols() {
211
- final String givenString = "~!@ #$%^&()_+{ }:\"|[]\\|,./<>?❤️";
+ final String givenString = "~!@ #$%^&()_+{ }:\"|[]\\|,./<>?";
212
final String res = Utils.urlencode(givenString, null);
213
- Assert.assertEquals("%7E%21%40+%23%24%25%5E%26%28%29_%2B%7B+%7D%3A%22%7C%5B%5D%5C%7C%2C.%2F%3C%3E%3F%E2%9D%A4%EF%B8%8F", res);
+ Assert.assertEquals("%7E%21%40+%23%24%25%5E%26%28%29_%2B%7B+%7D%3A%22%7C%5B%5D%5C%7C%2C.%2F%3C%3E%3F", res);
214
}
215
216
/**
0 commit comments