Code Duplication    Length = 7-7 lines in 2 locations

tests/Functional/AbstractTestCase.php 2 locations

@@ 73-79 (lines=7) @@
70
	/**
71
	 * @return Response
72
	 */
73
	final protected function runUnsecured()
74
	{
75
		$request = $this->prepareRequest(NULL, [
76
			'object_kind' => 'push'
77
		]);
78
		return $this->runRequest($request, $this->buildApp());
79
	}
80
81
82
	/**
@@ 85-91 (lines=7) @@
82
	/**
83
	 * @return Response
84
	 */
85
	final protected function runNotHandled()
86
	{
87
		$request = $this->prepareRequest(self::SECRET, [
88
			'object_kind' => 'test'
89
		]);
90
		return $this->runRequest($request, $this->buildApp());
91
	}
92
93
94
	/**