From bb6d5d9bc03ddcd83bde1b8ac68171c803f3aa62 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Wed, 3 Sep 2014 20:54:24 -0500 Subject: [PATCH] ASN1: one more unit test change --- tests/Unit/File/ASN1Test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Unit/File/ASN1Test.php b/tests/Unit/File/ASN1Test.php index c07aef59..fa2b150e 100644 --- a/tests/Unit/File/ASN1Test.php +++ b/tests/Unit/File/ASN1Test.php @@ -240,7 +240,7 @@ class Unit_File_ASN1Test extends PhpseclibTestCase public function testIndefiniteLength() { $asn1 = new File_ASN1(); - $decoded = $asn1->decodeBER(file_get_contents(dirname(__FILE__) . '/tests/Unit/File/ASN1/FE.pdf.p7m')); + $decoded = $asn1->decodeBER(file_get_contents(dirname(__FILE__) . '/ASN1/FE.pdf.p7m')); $this->assertEquals(count($decoded[0]['content'][1]['content'][0]['content']), 5); // older versions would have returned 3 }