diff options
| author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 10:11:53 +0000 | 
|---|---|---|
| committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 10:11:53 +0000 | 
| commit | ffd932df92f857a9607b119a0953ee353c422119 (patch) | |
| tree | 1419bfcf3d510792a96608ca926d979a4233492e /engine | |
| parent | 04fb2f6fc8a49498a8de0600e5e9b4172b27b5f0 (diff) | |
| download | elgg-ffd932df92f857a9607b119a0953ee353c422119.tar.gz elgg-ffd932df92f857a9607b119a0953ee353c422119.tar.bz2  | |
Fixed typos in text expectations that were cause elgg_normalize_url unit tests to fial
git-svn-id: http://code.elgg.org/elgg/trunk@7377 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
| -rw-r--r-- | engine/tests/api/helpers.php | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/tests/api/helpers.php b/engine/tests/api/helpers.php index 46ff3ac1b..e969eb6c8 100644 --- a/engine/tests/api/helpers.php +++ b/engine/tests/api/helpers.php @@ -81,14 +81,14 @@ class ElggCoreHelpersTest extends ElggCoreUnitTest {  			'mod/plugin/file.php' =>            elgg_get_site_url() . 'mod/plugin/file.php',  			'mod/plugin/file.php?p=v&p2=v2' =>  elgg_get_site_url() . 'mod/plugin/file.php?p=v&p2=v2',  			'rootfile.php' =>                   elgg_get_site_url() . 'rootfile.php', -			'rootfile.php?p=v&p2=v2' =>         elgg_get_site_url() . 'rootfile.php??p=v&p2=v2', +			'rootfile.php?p=v&p2=v2' =>         elgg_get_site_url() . 'rootfile.php?p=v&p2=v2',  			'/pg/page/handler' =>               elgg_get_site_url() . 'pg/page/handler',  			'/pg/page/handler?p=v&p2=v2' =>     elgg_get_site_url() . 'pg/page/handler?p=v&p2=v2',  			'/mod/plugin/file.php' =>           elgg_get_site_url() . 'mod/plugin/file.php',  			'/mod/plugin/file.php?p=v&p2=v2' => elgg_get_site_url() . 'mod/plugin/file.php?p=v&p2=v2',  			'/rootfile.php' =>                  elgg_get_site_url() . 'rootfile.php', -			'/rootfile.php?p=v&p2=v2' =>        elgg_get_site_url() . 'rootfile.php??p=v&p2=v2', +			'/rootfile.php?p=v&p2=v2' =>        elgg_get_site_url() . 'rootfile.php?p=v&p2=v2',  		);  		foreach ($conversions as $input => $output) {  | 
