Code Duplication    Length = 8-8 lines in 2 locations

tests/acceptance/AnnotationCest.php 2 locations

@@ 63-70 (lines=8) @@
60
		}
61
	}
62
63
	public function block_annotation_should_be_accessible_by_public(\AcceptanceTester $I)
64
	{
65
		$I->wantTo('Ensure that blocks annotation is accesible by public');
66
		$I->amOnPage('/srazvs/block/annotation/382ff1c792c7980aa0b1950259a518e8');
67
		foreach ($this->annotationBlock['fields'] as $field => $value) {
68
			$I->seeInField($field, $value);
69
		}
70
	}
71
72
	public function program_annotation_should_be_accessible_by_public(\AcceptanceTester $I)
73
	{
@@ 72-79 (lines=8) @@
69
		}
70
	}
71
72
	public function program_annotation_should_be_accessible_by_public(\AcceptanceTester $I)
73
	{
74
		$I->wantTo('Ensure that programs annotation is accesible by public');
75
		$I->amOnPage('/srazvs/program/annotation/524888c93f896f388d563f68682cf41c');
76
		foreach ($this->annotationProgram['fields'] as $field => $value) {
77
			$I->seeInField($field, $value);
78
		}
79
	}
80
81
}
82