]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Fixed typos in text expectations that were cause elgg_normalize_url unit tests to...
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 20 Nov 2010 10:11:53 +0000 (10:11 +0000)
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>
Sat, 20 Nov 2010 10:11:53 +0000 (10:11 +0000)
git-svn-id: http://code.elgg.org/elgg/trunk@7377 36083f99-b078-4883-b0ff-0f9b5a30f544

engine/tests/api/helpers.php

index 46ff3ac1b43daedf9b8074358ab2e06b3fb053fe..e969eb6c8c2809cca525c3ba387db583fbf104cc 100644 (file)
@@ -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) {