Skip to content
Snippets Groups Projects
Commit 6bbd219e authored by Remy Blom's avatar Remy Blom
Browse files

fix: AttributeCopyTest testWrongAttributeValue does no longer fail

parent c51a67ea
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment