We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee30012 commit e1ca145Copy full SHA for e1ca145
tests/Qiniu/Tests/CdnManagerTest.php
@@ -25,7 +25,7 @@ protected function setUp()
25
26
$this->cdnManager = new CdnManager($testAuth);
27
$this->encryptKey = $timestampAntiLeechEncryptKey;
28
- $this->imgUrl = $customDomain . '/20.jpg';
+ $this->imgUrl = $customDomain . '/24.jpg';
29
}
30
31
public function testCreateTimestampAntiLeechUrl()
@@ -34,7 +34,7 @@ public function testCreateTimestampAntiLeechUrl()
34
$signUrl = $this->cdnManager->createTimestampAntiLeechUrl($this->imgUrl, $this->encryptKey, 3600);
35
36
$response = Client::get($signUrl);
37
- print_r($signUrl);
+
38
$this->assertEquals($response->statusCode, 200);
39
$this->assertNull($response->error);
40
0 commit comments