Skip to content

Commit

Permalink
pts-core: Use identifier rather than test title on CSV output
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellarabel committed Jul 18, 2016
1 parent 0229f0a commit 506d650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pts-core/objects/pts_result_file_output.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public static function result_file_to_csv(&$result_file)
}
else
{
$csv_output .= '"' . $result_object->test_profile->get_title() . ' - ' . $result_object->get_arguments_description() . '"';
$csv_output .= '"' . $result_object->test_profile->get_identifier() . ' - ' . $result_object->get_arguments_description() . '"';
}

foreach($columns as $column)
Expand Down

0 comments on commit 506d650

Please sign in to comment.