diff options
| author | vvvv <[email protected]> | 2025-06-23 13:38:54 +0300 |
|---|---|---|
| committer | vvvv <[email protected]> | 2025-06-23 14:22:17 +0300 |
| commit | 99a63eaece7367f17dac58e66e45043aa641d9f7 (patch) | |
| tree | d104b51aab8eaf495f95d81525716e34b5bef983 /yql/essentials/minikql/jsonpath/ut/lax_ut.cpp | |
| parent | a731af300f45dd4cb0f3fd3b24c8213fe1425068 (diff) | |
YQL-20086 minikql
commit_hash:c35c972d6708fb1b3f34fa34a42cdae1ddf11cdc
Diffstat (limited to 'yql/essentials/minikql/jsonpath/ut/lax_ut.cpp')
| -rw-r--r-- | yql/essentials/minikql/jsonpath/ut/lax_ut.cpp | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/yql/essentials/minikql/jsonpath/ut/lax_ut.cpp b/yql/essentials/minikql/jsonpath/ut/lax_ut.cpp index 4d5dda83ac9..0fe3ed15a6c 100644 --- a/yql/essentials/minikql/jsonpath/ut/lax_ut.cpp +++ b/yql/essentials/minikql/jsonpath/ut/lax_ut.cpp @@ -52,7 +52,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -65,7 +65,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -109,7 +109,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -127,7 +127,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -156,7 +156,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -174,7 +174,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -189,7 +189,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -210,7 +210,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -227,7 +227,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -241,7 +241,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -258,7 +258,7 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } @@ -273,11 +273,12 @@ public: }; for (const auto& testCase : testCases) { - for (const auto mode : LAX_MODES) { + for (const auto mode : LaxModes_) { RunTestCase(testCase.Json, mode + testCase.JsonPath, testCase.Result); } } } }; -UNIT_TEST_SUITE_REGISTRATION(TJsonPathLaxTest);
\ No newline at end of file +UNIT_TEST_SUITE_REGISTRATION(TJsonPathLaxTest); + |
