From cdaa1db0d19f0dac33e4d8831df6a41a866dd465 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20M=C3=BCller?= <thomas.mueller@tmit.eu>
Date: Wed, 16 Oct 2013 16:33:56 +0200
Subject: [PATCH] re-enable test in SecurityMiddlewareTest

---
 .../middleware/security/SecurityMiddlewareTest.php           | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php
index 3e0f315a4f..4bfd725ffd 100644
--- a/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php
+++ b/tests/lib/appframework/middleware/security/SecurityMiddlewareTest.php
@@ -115,7 +115,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase {
 	 * @NoAdminRequired
 	 */
 	public function testAjaxNotAdminCheck() {
-		$this->markTestSkipped("Logged in state currently not available in API");
 		$this->ajaxExceptionStatus(
 			'testAjaxNotAdminCheck',
 			'isAdminUser',
@@ -261,7 +260,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase {
 	 * @NoAdminRequired
 	 */
 	public function testLoggedInCheck(){
-		$this->markTestSkipped("Logged in state currently not available in API");
 		$this->securityCheck('testLoggedInCheck', 'isLoggedIn');
 	}
 
@@ -271,7 +269,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase {
 	 * @NoAdminRequired
 	 */
 	public function testFailLoggedInCheck(){
-		$this->markTestSkipped("Logged in state currently not available in API");
 		$this->securityCheck('testFailLoggedInCheck', 'isLoggedIn', true);
 	}
 
@@ -280,7 +277,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase {
 	 * @NoCSRFRequired
 	 */
 	public function testIsAdminCheck(){
-		$this->markTestSkipped("Logged in state currently not available in API");
 		$this->securityCheck('testIsAdminCheck', 'isAdminUser');
 	}
 
@@ -289,7 +285,6 @@ class SecurityMiddlewareTest extends \PHPUnit_Framework_TestCase {
 	 * @NoCSRFRequired
 	 */
 	public function testFailIsAdminCheck(){
-		$this->markTestSkipped("Logged in state currently not available in API");
 		$this->securityCheck('testFailIsAdminCheck', 'isAdminUser', true);
 	}
 
-- 
GitLab