Skip to content

Commit cef0187

Browse files
committed
Use same name for output values in C++ runner as other languages
1 parent 747018c commit cef0187

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/snippets/test/fixtures/cpp/boost/runner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ void write_data_as_json( FILE *f, const double *x, const double *y, const unsign
192192
fprintf( f, "{" );
193193
write_named_array_f64( f, "x", x, len );
194194
fprintf( f, "," );
195-
write_named_array_f64( f, "y", y, len ); // TODO: update or erase this comment
195+
write_named_array_f64( f, "expected", y, len ); // TODO: update or erase this comment
196196
fprintf( f, "}" );
197197
}
198198

0 commit comments

Comments
 (0)