fix(bookmarks): fix test calling non-existent method

Changed test to use static method process_chrome_folder_static.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-30 06:26:31 +01:00
parent 3b1ff03ff8
commit 2d7fb33f30

View File

@@ -672,7 +672,7 @@ mod tests {
]),
};
state.process_chrome_folder(&folder);
BookmarksState::process_chrome_folder_static(&folder, &mut state.items);
assert_eq!(state.items.len(), 1);
assert_eq!(state.items[0].name.as_str(), "Test Bookmark");
}