diff --git a/tests/modules/core/lib/Auth/Process/AttributeCopyTest.php b/tests/modules/core/lib/Auth/Process/AttributeCopyTest.php
index c02fcfbb3234b2f37ee0f9fecaf72f17c1245025..3e3fe58a11d922085a0c22867e6b79a353311744 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);