Skip to content

Commit

Permalink
Use the standard header on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
waldoj committed Dec 26, 2023
1 parent 386ea4e commit 2fbadc7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
5 changes: 3 additions & 2 deletions deploy/tests/bills.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?php

include '../../includes/class.Log.php';
include '../../includes/class.Import.php';
include_once(__DIR__ . '/../../includes/settings.inc.php');
include_once(__DIR__ . '/../../includes/functions.inc.php');
include_once(__DIR__ . '/../../includes/vendor/autoload.php');

/*
* Instantiate the logging class
Expand Down
5 changes: 3 additions & 2 deletions deploy/tests/committee_members.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<?php

include '../../includes/class.Log.php';
include '../../includes/class.Import.php';
include_once(__DIR__ . '/../../includes/settings.inc.php');
include_once(__DIR__ . '/../../includes/functions.inc.php');
include_once(__DIR__ . '/../../includes/vendor/autoload.php');

/*
* Instantiate the logging class
Expand Down
10 changes: 8 additions & 2 deletions deploy/tests/legislators.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
<?php

include '../../includes/class.Log.php';
include '../../includes/class.Import.php';
include_once(__DIR__ . '/../../includes/settings.inc.php');
include_once(__DIR__ . '/../../includes/functions.inc.php');
include_once(__DIR__ . '/../../includes/vendor/autoload.php');

/*
* Use a DOM parser for the screen-scraper.
*/
use Sunra\PhpSimple\HtmlDomParser;

/*
* Instantiate the logging class
Expand Down

0 comments on commit 2fbadc7

Please sign in to comment.