From ca0783d52cb52a300cd0a45fd049adceabaa19aa Mon Sep 17 00:00:00 2001 From: Frank de Jonge Date: Sat, 16 Nov 2013 16:13:05 +0100 Subject: [PATCH] Don't test php internals, test the package --- tests/AwsS3Tests.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/AwsS3Tests.php b/tests/AwsS3Tests.php index 65d374037..da240ce1d 100644 --- a/tests/AwsS3Tests.php +++ b/tests/AwsS3Tests.php @@ -37,7 +37,7 @@ public function testRename() $result = $adapter->rename('old', 'new'); $this->assertArrayHasKey('path', $result); $this->assertContains('new', $result); - $this->assertContains(1293836400, $result); + $this->assertInternalType('int', $result['timestamp']); } public function testDeleteDir()