Fixed a unit test.

This commit is contained in:
Matt Butcher
2012-03-13 15:14:18 -05:00
parent 9b6e42f7e2
commit 46dd0f561f

View File

@@ -152,7 +152,8 @@ class CDNTest extends \HPCloud\Tests\TestCase {
public function testDisable($cdn) {
$cname = $this->conf('hpcloud.swift.container');
$cdn->disable($cname);
//$cdn->disable($cname);
$cdn->update($cname, array('cdn_enabled' => FALSE));
$props = $cdn->container($cname);
$this->assertFalse($props['cdn_enabled']);