We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e51b937 commit 44e1567Copy full SHA for 44e1567
tests/unit/library/operation_id/operation_id_ut.cpp
@@ -18,7 +18,7 @@ Y_UNIT_TEST_SUITE(OperationIdTest) {
18
19
Y_UNIT_TEST(PreparedQueryIdCompatibleFormatter) {
20
TOperationId opId;
21
- opId.GetMutableKind() = TOperationId::PREPARED_QUERY_ID;
+ opId.SetKind(TOperationId::PREPARED_QUERY_ID);
22
AddOptionalValue(opId, "id", PreparedQueryId);
23
auto result = opId.ToString();
24
UNIT_ASSERT_VALUES_EQUAL(FormatPreparedQueryIdCompat(PreparedQueryId), result);
0 commit comments