Session unit test giving a weird output

Signed-off-by: crynobone <crynobone@gmail.com>
This commit is contained in:
crynobone 2012-11-06 22:56:04 +08:00
parent 0d8a4ffbdd
commit 56eca662cc
1 changed files with 1 additions and 1 deletions

View File

@ -281,7 +281,7 @@ public function testSaveMethodCorrectlyCallsDriver()
->with($this->equalTo($expect), $this->equalTo($config), $this->equalTo(true)); ->with($this->equalTo($expect), $this->equalTo($config), $this->equalTo(true));
$payload->save(); $payload->save();
$this->assertEquals($session['data'][':new:'], $payload->session['data'][':old:']); $this->assertEquals($session['data'][':new:'], $payload->session['data'][':old:']);
} }