File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -610,10 +610,10 @@ TEST_CASE("Writer Array Array Writing", "[writer]")
610
610
Writer writer (str_writer);
611
611
writer.insert (" key" , [](ArrayWriter& array_writer)
612
612
{
613
- array_writer.push ([](ArrayWriter& array_writer )
613
+ array_writer.push ([](ArrayWriter& array_writer1 )
614
614
{
615
- array_writer .push (123.5 );
616
- array_writer .push (456.5 );
615
+ array_writer1 .push (123.5 );
616
+ array_writer1 .push (456.5 );
617
617
});
618
618
});
619
619
REQUIRE (str_writer.str () == " key = [ [ 123.5, 456.5 ] ]\r\n " );
@@ -639,10 +639,10 @@ TEST_CASE("Writer Array Object Writing", "[writer]")
639
639
Writer writer (str_writer);
640
640
writer.insert (" key" , [](ArrayWriter& array_writer)
641
641
{
642
- array_writer.push ([](ObjectWriter& object_writer )
642
+ array_writer.push ([](ObjectWriter& object_writer1 )
643
643
{
644
- object_writer [" key0" ] = 123.5 ;
645
- object_writer [" key1" ] = 456.5 ;
644
+ object_writer1 [" key0" ] = 123.5 ;
645
+ object_writer1 [" key1" ] = 456.5 ;
646
646
});
647
647
});
648
648
REQUIRE (str_writer.str () == " key = [ \r\n\t {\r\n\t\t key0 = 123.5\r\n\t\t key1 = 456.5\r\n\t }\r\n ]\r\n " );
You can’t perform that action at this time.
0 commit comments