From: Eunki, Hong Date: Wed, 25 Sep 2024 04:36:09 +0000 (+0900) Subject: Make UtcDaliTextLabelLocaleChange02 more lightweight X-Git-Tag: dali_2.3.43~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=56d39cee4aa5bd60452e0ee9717cf35b73b0718c;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git Make UtcDaliTextLabelLocaleChange02 more lightweight Change-Id: I556568c15dab97cdc852c61e921d02b45d3e315f Signed-off-by: Eunki, Hong --- diff --git a/automated-tests/src/dali-toolkit-internal/utc-Dali-TextLabel-internal.cpp b/automated-tests/src/dali-toolkit-internal/utc-Dali-TextLabel-internal.cpp index 47237f80d8..12575d30bc 100644 --- a/automated-tests/src/dali-toolkit-internal/utc-Dali-TextLabel-internal.cpp +++ b/automated-tests/src/dali-toolkit-internal/utc-Dali-TextLabel-internal.cpp @@ -1411,7 +1411,7 @@ int UtcDaliTextLabelLocaleChange02(void) float expectedHeight = 100.0f; label.SetProperty(DevelTextLabel::Property::RENDER_MODE, DevelTextLabel::Render::ASYNC_AUTO); - label.SetProperty(TextLabel::Property::TEXT, "Hello world Hello world"); + label.SetProperty(TextLabel::Property::TEXT, "H"); label.SetProperty(Actor::Property::SIZE, Vector2(expectedWidth, expectedHeight)); label.SetProperty(TextLabel::Property::POINT_SIZE, 12); label.SetProperty(TextLabel::Property::MULTI_LINE, true); @@ -1478,7 +1478,7 @@ int UtcDaliTextLabelLocaleChange02(void) expectedHeight = 50.0f; float dummySize = 100.0f; - std::string text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit."; + std::string text = "L"; dummy1.SetProperty(TextLabel::Property::TEXT, text); dummy2.SetProperty(TextLabel::Property::TEXT, text); label.SetProperty(TextLabel::Property::TEXT, text);