Skip to content

Commit

Permalink
fix unit tests compilation after confdata refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
tolk-vm committed Dec 4, 2023
1 parent 39f3137 commit b22b3bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/cpp/runtime/confdata-functions-test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ void init_global_confdata_confdata() {
initiated = true;

pid = 0;
std::forward_list<vk::string_view> force_ignore_prefixes;
auto &global_manager = ConfdataGlobalManager::get();
global_manager.init(1024 * 1024 * 16, std::unordered_set<vk::string_view>{}, nullptr);
global_manager.init(1024 * 1024 * 16, std::unordered_set<vk::string_view>{}, nullptr, std::move(force_ignore_prefixes));
auto confdata_sample_storage = global_manager.get_current().get_confdata();

confdata_sample_storage[string{"_key_1"}] = string{"value_1"};
Expand Down

0 comments on commit b22b3bf

Please sign in to comment.