From 987d5396d9a5d5e4b3ab1f9d9f526f9179522c0d Mon Sep 17 00:00:00 2001 From: Michael Dowling Date: Mon, 15 Oct 2012 11:21:06 -0700 Subject: [PATCH] Fixing broken test after removing url encoding --- tests/Guzzle/Tests/Service/Description/SchemaFormatterTest.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/Guzzle/Tests/Service/Description/SchemaFormatterTest.php b/tests/Guzzle/Tests/Service/Description/SchemaFormatterTest.php index 49186cb3..d2334743 100644 --- a/tests/Guzzle/Tests/Service/Description/SchemaFormatterTest.php +++ b/tests/Guzzle/Tests/Service/Description/SchemaFormatterTest.php @@ -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'),