You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When sending long string to service through dynamic source collection, string is cut,
Here is the test script pic from product team. The string on service is cut, so getMessage always returns English becuase source is different.
Locale locale = new Locale("zh", "CN");
String message = "xxxxxx";
String key = "xxx";
String result = this.translation.getString(locale, "xxx", key, message, "");
// result should be translated to zh_CH, that's why will not be equal to message
Assert.assertNotEquals(message, result);
The text was updated successfully, but these errors were encountered:
When sending long string to service through dynamic source collection, string is cut,
Here is the test script pic from product team. The string on service is cut, so getMessage always returns English becuase source is different.
Locale locale = new Locale("zh", "CN");
String message = "xxxxxx";
String key = "xxx";
String result = this.translation.getString(locale, "xxx", key, message, "");
// result should be translated to zh_CH, that's why will not be equal to message
Assert.assertNotEquals(message, result);
The text was updated successfully, but these errors were encountered: