Changeset dc5c303 in mainline for uspace/lib/ui/test/filelist.c
- Timestamp:
- 2023-12-28T13:59:23Z (22 months ago)
- Children:
- 6b66de6b
- Parents:
- 42c2e65 (diff), f87ff8e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2023-12-28 13:59:23)
- git-committer:
- GitHub <noreply@…> (2023-12-28 13:59:23)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/ui/test/filelist.c
r42c2e65 rdc5c303 350 350 } 351 351 352 /** ui_file_list_entry_de lete() deletes entry */353 PCUT_TEST(entry_de lete)352 /** ui_file_list_entry_destroy() destroys entry */ 353 PCUT_TEST(entry_destroy) 354 354 { 355 355 ui_t *ui; … … 386 386 387 387 entry = ui_file_list_first(flist); 388 ui_file_list_entry_de lete(entry);388 ui_file_list_entry_destroy(entry); 389 389 390 390 PCUT_ASSERT_INT_EQUALS(1, ui_list_entries_cnt(flist->list)); 391 391 392 392 entry = ui_file_list_first(flist); 393 ui_file_list_entry_de lete(entry);393 ui_file_list_entry_destroy(entry); 394 394 395 395 PCUT_ASSERT_INT_EQUALS(0, ui_list_entries_cnt(flist->list));
Note:
See TracChangeset
for help on using the changeset viewer.