diff options
Diffstat (limited to 'engine/tests')
| -rw-r--r-- | engine/tests/api/helpers.php | 2 | ||||
| -rw-r--r-- | engine/tests/api/metadata.php | 2 | ||||
| -rw-r--r-- | engine/tests/api/plugins.php | 4 | ||||
| -rw-r--r-- | engine/tests/objects/entities.php | 2 | ||||
| -rw-r--r-- | engine/tests/objects/objects.php | 2 | ||||
| -rw-r--r-- | engine/tests/regression/trac_bugs.php | 10 | ||||
| -rw-r--r-- | engine/tests/test_files/plugin_18/manifest.xml | 2 | 
7 files changed, 12 insertions, 12 deletions
diff --git a/engine/tests/api/helpers.php b/engine/tests/api/helpers.php index 10216140f..414fb4145 100644 --- a/engine/tests/api/helpers.php +++ b/engine/tests/api/helpers.php @@ -519,7 +519,7 @@ class ElggCoreHelpersTest extends ElggCoreUnitTest {  		$this->assertIdentical($elements_sorted_string, $test_elements);  	} -	// see http://trac.elgg.org/ticket/4288 +	// see https://github.com/elgg/elgg/issues/4288  	public function testElggBatchIncOffset() {  		// normal increment  		$options = array( diff --git a/engine/tests/api/metadata.php b/engine/tests/api/metadata.php index 0862341c1..d23510c6a 100644 --- a/engine/tests/api/metadata.php +++ b/engine/tests/api/metadata.php @@ -139,7 +139,7 @@ class ElggCoreMetadataAPITest extends ElggCoreUnitTest {  	// Make sure metadata with multiple values is correctly deleted when re-written  	// by another user -	// http://trac.elgg.org/ticket/2776 +	// https://github.com/elgg/elgg/issues/2776  	public function test_elgg_metadata_multiple_values() {  		$u1 = new ElggUser();  		$u1->username = rand(); diff --git a/engine/tests/api/plugins.php b/engine/tests/api/plugins.php index 114f3991b..d0f111c48 100644 --- a/engine/tests/api/plugins.php +++ b/engine/tests/api/plugins.php @@ -69,7 +69,7 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest {  			'description' => 'A longer, more interesting description.',  			'website' => 'http://www.elgg.org/',  			'repository' => 'https://github.com/Elgg/Elgg', -			'bugtracker' => 'http://trac.elgg.org', +			'bugtracker' => 'https://github.com/elgg/elgg/issues',  			'donations' => 'http://elgg.org/supporter.php',  			'copyright' => '(C) Elgg Foundation 2011',  			'license' => 'GNU General Public License version 2', @@ -174,7 +174,7 @@ class ElggCorePluginsAPITest extends ElggCoreUnitTest {  	}  		public function testElggPluginManifestGetBugtracker() { -		$this->assertEqual($this->manifest18->getBugTrackerURL(), 'http://trac.elgg.org'); +		$this->assertEqual($this->manifest18->getBugTrackerURL(), 'https://github.com/elgg/elgg/issues');  		$this->assertEqual($this->manifest17->getBugTrackerURL(), '');  	} diff --git a/engine/tests/objects/entities.php b/engine/tests/objects/entities.php index 248b85c9e..bac72079e 100644 --- a/engine/tests/objects/entities.php +++ b/engine/tests/objects/entities.php @@ -271,7 +271,7 @@ class ElggCoreEntityTest extends ElggCoreUnitTest {  		$this->save_entity();  		// test deleting incorrectly -		// @link http://trac.elgg.org/ticket/2273 +		// @link https://github.com/elgg/elgg/issues/2273  		$this->assertNull($this->entity->deleteMetadata('impotent'));  		$this->assertEqual($this->entity->important, 'indeed!'); diff --git a/engine/tests/objects/objects.php b/engine/tests/objects/objects.php index 915594e0a..263ab2414 100644 --- a/engine/tests/objects/objects.php +++ b/engine/tests/objects/objects.php @@ -194,7 +194,7 @@ class ElggCoreObjectTest extends ElggCoreUnitTest {  		$old = elgg_set_ignore_access(true);  	} -	// see http://trac.elgg.org/ticket/1196 +	// see https://github.com/elgg/elgg/issues/1196  	public function testElggEntityRecursiveDisableWhenLoggedOut() {  		$e1 = new ElggObject();  		$e1->access_id = ACCESS_PUBLIC; diff --git a/engine/tests/regression/trac_bugs.php b/engine/tests/regression/trac_bugs.php index f173b5b9f..9372b0855 100644 --- a/engine/tests/regression/trac_bugs.php +++ b/engine/tests/regression/trac_bugs.php @@ -201,8 +201,8 @@ class ElggCoreRegressionBugsTest extends ElggCoreUnitTest {  	}  	/** -	 * http://trac.elgg.org/ticket/3210 - Don't remove -s in friendly titles -	 * http://trac.elgg.org/ticket/2276 - improve char encoding +	 * https://github.com/elgg/elgg/issues/3210 - Don't remove -s in friendly titles +	 * https://github.com/elgg/elgg/issues/2276 - improve char encoding  	 */  	public function test_friendly_title() {  		$cases = array( @@ -216,7 +216,7 @@ class ElggCoreRegressionBugsTest extends ElggCoreUnitTest {  			=> "a-a-a-a-a-a-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",  			// separators trimmed -			"-_ hello _-"  +			"-_ hello _-"  			=> "hello",  			// accents removed, lower case, other multibyte chars are URL encoded @@ -286,7 +286,7 @@ class ElggCoreRegressionBugsTest extends ElggCoreUnitTest {  			'web archive anchor <a href="http://web.archive.org/web/20000229040250/http://www.google.com/">google</a>' =>  				'web archive anchor <a href="http://web.archive.org/web/20000229040250/http://www.google.com/">google</a>', -			'single quotes already anchor <a href=\'http://www.yahoo.com\'>yahoo</a>' =>  +			'single quotes already anchor <a href=\'http://www.yahoo.com\'>yahoo</a>' =>  				'single quotes already anchor <a href=\'http://www.yahoo.com\'>yahoo</a>',  			'unquoted already anchor <a href=http://www.yahoo.com>yahoo</a>' => @@ -302,7 +302,7 @@ class ElggCoreRegressionBugsTest extends ElggCoreUnitTest {  	/**  	 * Ensure additional select columns do not end up in entity attributes. -	 *  +	 *  	 * https://github.com/Elgg/Elgg/issues/5538  	 */  	public function test_extra_columns_dont_appear_in_attributes() { diff --git a/engine/tests/test_files/plugin_18/manifest.xml b/engine/tests/test_files/plugin_18/manifest.xml index 5d788616a..c8b407511 100644 --- a/engine/tests/test_files/plugin_18/manifest.xml +++ b/engine/tests/test_files/plugin_18/manifest.xml @@ -7,7 +7,7 @@  	<description>A longer, more interesting description.</description>  	<website>http://www.elgg.org/</website>  	<repository>https://github.com/Elgg/Elgg</repository> -	<bugtracker>http://trac.elgg.org</bugtracker> +	<bugtracker>https://github.com/elgg/elgg/issues</bugtracker>  	<donations>http://elgg.org/supporter.php</donations>  	<copyright>(C) Elgg Foundation 2011</copyright>  	<license>GNU General Public License version 2</license>  | 
