summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrey Andreev <narf@bofh.bg>2012-06-14 10:18:26 +0200
committerAndrey Andreev <narf@bofh.bg>2012-06-14 10:18:26 +0200
commit43cfd0c37ca241618f33eae87fec720a5bcf13d6 (patch)
tree94cd70d9e665402ccbe6e970a2b834da4eba3ec4
parentfb859791182edd2f46479cd69ea4615daebed655 (diff)
Comment out _set_uri_string() test as it is no longer callable from outside the class
-rw-r--r--tests/codeigniter/core/URI_test.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/codeigniter/core/URI_test.php b/tests/codeigniter/core/URI_test.php
index 0ba694b46..60ed1a4e9 100644
--- a/tests/codeigniter/core/URI_test.php
+++ b/tests/codeigniter/core/URI_test.php
@@ -9,6 +9,10 @@ class URI_test extends CI_TestCase {
// --------------------------------------------------------------------
+ /* As of the following commit, _set_uri_string() is a protected method:
+
+ https://github.com/EllisLab/CodeIgniter/commit/d461934184d95b0cfb2feec93f27b621ef72a5c2
+
public function test_set_uri_string()
{
// Slashes get killed
@@ -18,6 +22,7 @@ class URI_test extends CI_TestCase {
$this->uri->_set_uri_string('nice/uri');
$this->assertEquals('nice/uri', $this->uri->uri_string);
}
+ */
// --------------------------------------------------------------------