summaryrefslogtreecommitdiffstats
path: root/tests/unit/screen_ui_test.cpp
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2018-11-28 00:43:46 +0100
committerandroid-build-merger <android-build-merger@google.com>2018-11-28 00:43:46 +0100
commit942d09a99e9ff350b80581767c3e2f036c73c696 (patch)
treed8e2598313ff5f5a3fdc074896b615645b73f14a /tests/unit/screen_ui_test.cpp
parentMerge "minui: Fix a wrong arg in calling GRSurface::Create()." am: ea4ec3149b (diff)
parentMerge "minui: GRSurface::Create() computes data_size on its own." (diff)
downloadandroid_bootable_recovery-942d09a99e9ff350b80581767c3e2f036c73c696.tar
android_bootable_recovery-942d09a99e9ff350b80581767c3e2f036c73c696.tar.gz
android_bootable_recovery-942d09a99e9ff350b80581767c3e2f036c73c696.tar.bz2
android_bootable_recovery-942d09a99e9ff350b80581767c3e2f036c73c696.tar.lz
android_bootable_recovery-942d09a99e9ff350b80581767c3e2f036c73c696.tar.xz
android_bootable_recovery-942d09a99e9ff350b80581767c3e2f036c73c696.tar.zst
android_bootable_recovery-942d09a99e9ff350b80581767c3e2f036c73c696.zip
Diffstat (limited to 'tests/unit/screen_ui_test.cpp')
-rw-r--r--tests/unit/screen_ui_test.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/unit/screen_ui_test.cpp b/tests/unit/screen_ui_test.cpp
index 09c49977f..61a092551 100644
--- a/tests/unit/screen_ui_test.cpp
+++ b/tests/unit/screen_ui_test.cpp
@@ -231,7 +231,7 @@ TEST_F(ScreenUITest, WearMenuSelectItemsOverflow) {
}
TEST_F(ScreenUITest, GraphicMenuSelection) {
- auto image = GRSurface::Create(50, 50, 50, 1, 50 * 50);
+ auto image = GRSurface::Create(50, 50, 50, 1);
auto header = image->Clone();
std::vector<const GRSurface*> items = {
image.get(),
@@ -258,7 +258,7 @@ TEST_F(ScreenUITest, GraphicMenuSelection) {
}
TEST_F(ScreenUITest, GraphicMenuValidate) {
- auto image = GRSurface::Create(50, 50, 50, 1, 50 * 50);
+ auto image = GRSurface::Create(50, 50, 50, 1);
auto header = image->Clone();
std::vector<const GRSurface*> items = {
image.get(),
@@ -269,7 +269,7 @@ TEST_F(ScreenUITest, GraphicMenuValidate) {
ASSERT_TRUE(GraphicMenu::Validate(200, 200, header.get(), items));
// Menu exceeds the horizontal boundary.
- auto wide_surface = GRSurface::Create(300, 50, 300, 1, 300 * 50);
+ auto wide_surface = GRSurface::Create(300, 50, 300, 1);
ASSERT_FALSE(GraphicMenu::Validate(299, 200, wide_surface.get(), items));
// Menu exceeds the vertical boundary.