Skip to content

Commit

Permalink
Add missing logging instantiation
Browse files Browse the repository at this point in the history
  • Loading branch information
waldoj committed Dec 26, 2023
1 parent 767494f commit b9d61dc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion deploy/tests/bills.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@

include '../../includes/class.Import.php';

$import = new Import();
/*
* Instantiate the logging class
*/
$log = new Log;
$import = new Import($log);

$csv_line = '"HB1","Absentee voting; no excuse required.","H208","Herring","H22","Committee Referral Pending","11/18/19","","","","","","","","N","N","N","N","N","N","N","N","HB1","11/18/19","","","","","","","","","","","H2201","","","","","11/18/19","H2201"';
$bill = str_getcsv($csv_line, ',', '"');
Expand Down

0 comments on commit b9d61dc

Please sign in to comment.