From 2ae6c3d8d6139a4ea811bfbd3670086e03b6bc87 Mon Sep 17 00:00:00 2001 From: Semyon Yentsov Date: Fri, 10 Jan 2025 19:37:34 +0300 Subject: [PATCH] fix error message in TestInvalidInput --- ydb/library/binary_json/ut/entry_ut.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ydb/library/binary_json/ut/entry_ut.cpp b/ydb/library/binary_json/ut/entry_ut.cpp index 097707aec22a..91710122db32 100644 --- a/ydb/library/binary_json/ut/entry_ut.cpp +++ b/ydb/library/binary_json/ut/entry_ut.cpp @@ -97,7 +97,7 @@ class TBinaryJsonEntryTest : public TBinaryJsonTestBase { void TestInvalidInput() { const TVector> testCases = { - {"nul", "N_ATOM_ERROR: Problem while parsing an atom starting with the letter 'n'"}, + {"nul", "INCORRECT_TYPE: The JSON element does not have the requested type."}, }; for (const auto& testCase : testCases) {