Skip to content

Commit a3e1c30

Browse files
committed
Fix php5.4 syntax
1 parent b9e6a0f commit a3e1c30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/CookieUtilSpec.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function it_parses_cookie_date_string($cookieDateString, $expectedString)
2323
function it_throws_an_exception_if_cookie_date_string_is_unparseable($cookieDateString)
2424
{
2525
$this->beConstructedThrough('parseDate', [$cookieDateString]);
26-
$this->shouldThrow(UnexpectedValueException::class);
26+
$this->shouldThrow('Http\Message\Exception\UnexpectedValueException');
2727
}
2828

2929
/**

0 commit comments

Comments
 (0)