@@ -93,9 +93,10 @@ std::vector<WriterTestParams> GenerateTestCases() {
9393 auto dummy_schema = schema ({field (" a" , uint8 ())});
9494 std::string dummy_batch_data = R"( [{"a": null}])" ;
9595
96- auto header_without_structral_charaters =
96+ auto header_without_structural_charaters =
9797 schema ({field (" a " , uint64 ()), field (" b" , int32 ())});
98- std::string expected_header_without_structral_charaters = std::string (R"( a ,b)" ) + " \n " ;
98+ std::string expected_header_without_structural_charaters =
99+ std::string (R"( a ,b)" ) + " \n " ;
99100 auto expected_status_no_quotes_with_structural_in_header = [](const char * header) {
100101 return Status::Invalid (
101102 " CSV header may not contain structural characters if quoting "
@@ -292,12 +293,12 @@ std::vector<WriterTestParams> GenerateTestCases() {
292293 DefaultTestOptions (/* include_header=*/ false , /* null_string=*/ " " ,
293294 QuotingStyle::Needed, /* eol=*/ " ;" , /* delimiter=*/ ' ;' ),
294295 /* expected_output*/ " " , expected_status_illegal_delimiter (' ;' )},
295- {header_without_structral_charaters , " []" ,
296+ {header_without_structural_charaters , " []" ,
296297 DefaultTestOptions (/* include_header=*/ true , /* null_string=*/ " " ,
297298 QuotingStyle::Needed, /* eol=*/ " \n " ,
298299 /* delimiter=*/ ' ,' , /* batch_size=*/ 5 ,
299300 /* quoting_header=*/ QuotingStyle::None),
300- expected_header_without_structral_charaters },
301+ expected_header_without_structural_charaters },
301302 {abc_schema, " []" ,
302303 DefaultTestOptions (/* include_header=*/ true , /* null_string=*/ " " ,
303304 QuotingStyle::Needed, /* eol=*/ " \n " ,
0 commit comments