From 3785bebccec82017356bed962e43ba451bd680f8 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Wed, 24 Sep 2014 00:07:49 -0500 Subject: [PATCH] ASN1: fix unit test --- tests/Unit/File/ASN1Test.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/Unit/File/ASN1Test.php b/tests/Unit/File/ASN1Test.php index fe35f688..5a5e6efb 100644 --- a/tests/Unit/File/ASN1Test.php +++ b/tests/Unit/File/ASN1Test.php @@ -272,8 +272,9 @@ class Unit_File_ASN1Test extends PhpseclibTestCase /** * @group github477 */ - public function contextSpecificNonConstructed() + public function testContextSpecificNonConstructed() { + $asn1 = new File_ASN1(); $decoded = $asn1->decodeBER(base64_decode('MBaAFJtUo7c00HsI5EPZ4bkICfkOY2Pv')); $this->assertInternalType('string', $decoded[0]['content'][0]['content']); }