From 6bbd219ea8177bd7032ad322c6f293817d638a06 Mon Sep 17 00:00:00 2001
From: Remy Blom <remy.blom@hku.nl>
Date: Thu, 2 Feb 2017 09:19:07 +0100
Subject: [PATCH] fix: AttributeCopyTest testWrongAttributeValue does no longer
 fail

---
 tests/modules/core/lib/Auth/Process/AttributeCopyTest.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/modules/core/lib/Auth/Process/AttributeCopyTest.php b/tests/modules/core/lib/Auth/Process/AttributeCopyTest.php
index c02fcfbb3..3e3fe58a1 100644
--- a/tests/modules/core/lib/Auth/Process/AttributeCopyTest.php
+++ b/tests/modules/core/lib/Auth/Process/AttributeCopyTest.php
@@ -128,11 +128,11 @@ class Test_Core_Auth_Process_AttributeCopy extends PHPUnit_Framework_TestCase
     public function testWrongAttributeValue()
     {
         $config = array(
-            'test' => array('test2'),
+            'test' => 100,
         );
         $request = array(
             'Attributes' => array(
-                'test' => 100,
+                'test' => array('value1'),
             ),
         );
         $result = self::processFilter($config, $request);
-- 
GitLab