diff --git a/src/PHPCI/View/SummaryTable.phtml b/src/PHPCI/View/SummaryTable.phtml
index c6c84860..670dde1f 100644
--- a/src/PHPCI/View/SummaryTable.phtml
+++ b/src/PHPCI/View/SummaryTable.phtml
@@ -90,22 +90,7 @@ foreach($projects as $project):
?>
-
- 5): ?>
-
-
-
-
-
+
@@ -125,8 +110,6 @@ foreach($projects as $project):
(getId()]; ?>)
-
-
getId()][$idx])) {
echo '';
diff --git a/src/PHPCI/Worker/BuildWorker.php b/src/PHPCI/Worker/BuildWorker.php
index 92ee4ced..42c45be7 100644
--- a/src/PHPCI/Worker/BuildWorker.php
+++ b/src/PHPCI/Worker/BuildWorker.php
@@ -116,8 +116,7 @@ class BuildWorker
if (!empty($jobData['config'])) {
$this->logger->addDebug('Using job-specific config.');
$currentConfig = Config::getInstance()->getArray();
- $config = new Config($jobData['config']);
- Database::reset($config);
+ Database::reset();
}
try {
@@ -138,7 +137,7 @@ class BuildWorker
// After execution we no longer want to record the information
// back to this specific build so the handler should be removed.
- $this->logger->popHandler($buildDbLog);
+ $this->logger->popHandler();
} catch (\PDOException $ex) {
// If we've caught a PDO Exception, it is probably not the fault of the build, but of a failed
// connection or similar. Release the job and kill the worker.
@@ -154,8 +153,7 @@ class BuildWorker
// Reset the config back to how it was prior to running this job:
if (!empty($currentConfig)) {
- $config = new Config($currentConfig);
- Database::reset($config);
+ Database::reset();
}
// Delete the job when we're done:
diff --git a/tests/B8Framework/data/view/Form/form.phtml b/tests/B8Framework/data/view/Form/form.phtml
index 1473e2fa..16bfb502 100755
--- a/tests/B8Framework/data/view/Form/form.phtml
+++ b/tests/B8Framework/data/view/Form/form.phtml
@@ -1 +1 @@
-
\ No newline at end of file
+= $action . $method; ?>
diff --git a/tests/B8Framework/data/view/format.phtml b/tests/B8Framework/data/view/format.phtml
index e646a066..c87199a6 100755
--- a/tests/B8Framework/data/view/format.phtml
+++ b/tests/B8Framework/data/view/format.phtml
@@ -1 +1 @@
-Format()->Currency($number, $symbol); ?>
\ No newline at end of file
+= $this->Format()->Currency($number, $symbol); ?>
diff --git a/tests/PHPCI/Service/BuiltStatusServiceTest.php b/tests/PHPCI/Service/BuiltStatusServiceTest.php
index 91e115e4..d9a1320c 100644
--- a/tests/PHPCI/Service/BuiltStatusServiceTest.php
+++ b/tests/PHPCI/Service/BuiltStatusServiceTest.php
@@ -11,7 +11,6 @@ namespace PHPCI\Service\Tests;
use PHPCI\Model\Build;
use PHPCI\Model\Project;
-use PHPCI\Service\BuildService;
use PHPCI\Service\BuildStatusService;
/**