From 3f5440fecbc2fc41befdb58457715343e1d9d161 Mon Sep 17 00:00:00 2001 From: jbajic Date: Wed, 29 Mar 2023 14:37:55 +0200 Subject: [PATCH] Replace at with At --- tests/unit/query_v2_create_expand_multiframe.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/query_v2_create_expand_multiframe.cpp b/tests/unit/query_v2_create_expand_multiframe.cpp index 77eb7f2ea..7eb64fffc 100644 --- a/tests/unit/query_v2_create_expand_multiframe.cpp +++ b/tests/unit/query_v2_create_expand_multiframe.cpp @@ -31,8 +31,8 @@ MultiFrame CreateMultiFrame(const size_t max_pos, const Symbol &src, const Symbo auto frames_populator = multi_frame.GetInvalidFramesPopulator(); size_t i = 0; for (auto &frame : frames_populator) { - auto &src_acc = frame.at(src); - auto &dst_acc = frame.at(dst); + auto &src_acc = frame.At(src); + auto &dst_acc = frame.At(dst); auto v1 = msgs::Vertex{.id = {{msgs::LabelId::FromUint(1)}, {msgs::Value(static_cast(i++))}}}; auto v2 = msgs::Vertex{.id = {{msgs::LabelId::FromUint(1)}, {msgs::Value(static_cast(i++))}}}; std::map mp;