GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 7-7 lines in 2 locations

protected/extensions/nested-set-behavior/tests/unit/NestedSetBehaviorTest.php 2 locations

@@ 274-280 (lines=7) @@
271
		$this->assertTrue($this->checkTree());
272
		$this->assertTrue($nestedSet->getIsDeletedRecord());
273
		$this->assertTrue($this->checkArray($array));
274
		foreach($array as $item)
275
		{
276
			if(in_array($item->primaryKey,array(4,5,6,7)))
277
				$this->assertTrue($item->getIsDeletedRecord());
278
			else
279
				$this->assertFalse($item->getIsDeletedRecord());
280
		}
281
282
		// many roots
283
		$array=NestedSetWithManyRoots::model()->findAll();
@@ 296-302 (lines=7) @@
293
		$this->assertTrue($this->checkTreeWithManyRoots());
294
		$this->assertTrue($nestedSet->getIsDeletedRecord());
295
		$this->assertTrue($this->checkArrayWithManyRoots($array));
296
		foreach($array as $item)
297
		{
298
			if(in_array($item->primaryKey,array(4,9,10,11)))
299
				$this->assertTrue($item->getIsDeletedRecord());
300
			else
301
				$this->assertFalse($item->getIsDeletedRecord());
302
		}
303
	}
304
305
	public function testPrependTo()