From c0edb639edbc96b97268cebf28c8d5fc22f7fd8d Mon Sep 17 00:00:00 2001 From: Arthur Schiwon Date: Fri, 13 Dec 2013 12:56:06 +0100 Subject: [PATCH] adjust test --- tests/lib/user/session.php | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/tests/lib/user/session.php b/tests/lib/user/session.php index e457a7bda3..46b268b362 100644 --- a/tests/lib/user/session.php +++ b/tests/lib/user/session.php @@ -52,9 +52,20 @@ class Session extends \PHPUnit_Framework_TestCase { public function testLoginValidPasswordEnabled() { $session = $this->getMock('\OC\Session\Memory', array(), array('')); - $session->expects($this->once()) + $session->expects($this->exactly(2)) ->method('set') - ->with('user_id', 'foo'); + ->with($this->callback(function($key) { + switch($key) { + case 'user_id': + case 'loginname': + return true; + break; + default: + return false; + break; + } + }, + 'foo')); $manager = $this->getMock('\OC\User\Manager');