1
0
mirror of https://github.com/guzzle/guzzle.git synced 2025-02-25 02:22:57 +01:00

Fixing broken test after removing url encoding

This commit is contained in:
Michael Dowling 2012-10-15 11:21:06 -07:00
parent 6dacaa8360
commit 987d5396d9

View File

@ -14,8 +14,6 @@ class SchemaFormatterTest extends \Guzzle\Tests\GuzzleTestCase
$d = 'October 13, 2012 16:15:46 UTC';
return array(
array('test 123', 'url-encoded', 'test+123'),
array('test 123', 'raw-url-encoded', 'test%20123'),
array('foo', 'does-not-exist', 'foo'),
array($d, 'date-time', '2012-10-13T16:15:46Z'),
array($d, 'date-time-http', 'Sat, 13 Oct 2012 16:15:46 GMT'),