Skip to content

Commit 1348243

Browse files
Update UtilsTests.java (#247)
1 parent bb3d889 commit 1348243

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk-java/src/test/java/ly/count/sdk/java/internal/UtilsTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,9 @@ public void urlencode_empty() {
208208
*/
209209
@Test
210210
public void urlencode_symbols() {
211-
final String givenString = "~!@ #$%^&()_+{ }:\"|[]\\|,./<>?❤️";
211+
final String givenString = "~!@ #$%^&()_+{ }:\"|[]\\|,./<>?";
212212
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);
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", res);
214214
}
215215

216216
/**

0 commit comments

Comments
 (0)