Skip to content

Commit 6cd4172

Browse files
committed
fix(tests): lazy list capacity check
1 parent 4204eee commit 6cd4172

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/test_cases/UI/test_lazy_list.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ TEST_F(TestLazyList, Basic)
6868

6969
EXPECT_EQUAL_SCREENSHOT("list/lazy_list_basic.png");
7070
EXPECT_EQ(list.getLazyItems().size(), 10);
71-
EXPECT_EQ(list.getVisibleItems().size(), 3);
71+
EXPECT_EQ(list.getVisibleItems().size(), 4);
7272
/**
7373
* The capacity indicates whether the amount of visible items was ever set to 10 in which case there is no advantage
7474
* over a regular list. This could happen when the list size is first calculated if the list container uses

0 commit comments

Comments
 (0)