Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-11-11 14:08:31 +0300
committermattab <matthieu.aubry@gmail.com>2014-11-11 14:08:31 +0300
commit62607a51e11f7ec885421804938603d69e88ac85 (patch)
tree0f419c5b63c2bbd2b2d192c8900e3a65bde9e5da /tests/PHPUnit/Unit/DataTableTest.php
parent7954d4c4a719bb1e9f929efdf398cb30382c7e89 (diff)
fixing a unit test now that the function does not throw exception refs #6485
Diffstat (limited to 'tests/PHPUnit/Unit/DataTableTest.php')
-rw-r--r--tests/PHPUnit/Unit/DataTableTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PHPUnit/Unit/DataTableTest.php b/tests/PHPUnit/Unit/DataTableTest.php
index 355b717118..9e9297cb16 100644
--- a/tests/PHPUnit/Unit/DataTableTest.php
+++ b/tests/PHPUnit/Unit/DataTableTest.php
@@ -328,7 +328,7 @@ class DataTableTest extends \PHPUnit_Framework_TestCase
$row2 = new Row(array(Row::COLUMNS => $columns2));
$row2->sumRow($row1);
- $this->fail("sumRow did not throw when adding two string columns.");
+
}
/**