@@ -5,7 +5,7 @@ namespace NFq::NRowDispatcher::NTests {
5
5
6
6
namespace {
7
7
8
- class TFormatHadlerFixture : public TBaseFixture {
8
+ class TFormatHandlerFixture : public TBaseFixture {
9
9
public:
10
10
using TBase = TBaseFixture;
11
11
using TCallback = std::function<void (TQueue<std::pair<TRope, TVector<ui64>>>&& data)>;
@@ -250,7 +250,7 @@ class TFormatHadlerFixture : public TBaseFixture {
250
250
251
251
252
252
Y_UNIT_TEST_SUITE (TestFormatHandler) {
253
- Y_UNIT_TEST_F (ManyJsonClients, TFormatHadlerFixture ) {
253
+ Y_UNIT_TEST_F (ManyJsonClients, TFormatHandlerFixture ) {
254
254
const ui64 firstOffset = 42 ;
255
255
const TSchemaColumn commonColumn = {" com_col" , " [DataType; String]" };
256
256
@@ -278,7 +278,7 @@ Y_UNIT_TEST_SUITE(TestFormatHandler) {
278
278
});
279
279
}
280
280
281
- Y_UNIT_TEST_F (ManyRawClients, TFormatHadlerFixture ) {
281
+ Y_UNIT_TEST_F (ManyRawClients, TFormatHandlerFixture ) {
282
282
CreateFormatHandler (
283
283
{.JsonParserConfig = {}, .FiltersConfig = {.CompileServiceId = CompileService}},
284
284
{.ParsingFormat = " raw" }
@@ -320,7 +320,7 @@ Y_UNIT_TEST_SUITE(TestFormatHandler) {
320
320
});
321
321
}
322
322
323
- Y_UNIT_TEST_F (ClientValidation, TFormatHadlerFixture ) {
323
+ Y_UNIT_TEST_F (ClientValidation, TFormatHandlerFixture ) {
324
324
const TVector<TSchemaColumn> schema = {{" data" , " [DataType; String]" }};
325
325
const TString filter = " WHERE FALSE" ;
326
326
const auto callback = EmptyCheck ();
@@ -345,7 +345,7 @@ Y_UNIT_TEST_SUITE(TestFormatHandler) {
345
345
);
346
346
}
347
347
348
- Y_UNIT_TEST_F (ClientError, TFormatHadlerFixture ) {
348
+ Y_UNIT_TEST_F (ClientError, TFormatHandlerFixture ) {
349
349
const ui64 firstOffset = 42 ;
350
350
const TSchemaColumn commonColumn = {" com_col" , " [DataType; String]" };
351
351
@@ -365,7 +365,7 @@ Y_UNIT_TEST_SUITE(TestFormatHandler) {
365
365
);
366
366
}
367
367
368
- Y_UNIT_TEST_F (ClientErrorWithEmptyFilter, TFormatHadlerFixture ) {
368
+ Y_UNIT_TEST_F (ClientErrorWithEmptyFilter, TFormatHandlerFixture ) {
369
369
const ui64 firstOffset = 42 ;
370
370
const TSchemaColumn commonColumn = {" com_col" , " [DataType; String]" };
371
371
0 commit comments