From 82a528711f9a76ced3a18319cdc340895ca88353 Mon Sep 17 00:00:00 2001 From: Aidan Woods Date: Tue, 4 Dec 2018 18:08:14 +0100 Subject: [PATCH] Fix commonmark test --- tests/CommonMarkTestStrict.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/CommonMarkTestStrict.php b/tests/CommonMarkTestStrict.php index c1bddc6..8816133 100644 --- a/tests/CommonMarkTestStrict.php +++ b/tests/CommonMarkTestStrict.php @@ -2,12 +2,14 @@ namespace Erusev\Parsedown\Tests; +use PHPUnit\Framework\TestCase; + /** * Test Parsedown against the CommonMark spec * * @link http://commonmark.org/ CommonMark */ -class CommonMarkTestStrict extends PHPUnit_Framework_TestCase +class CommonMarkTestStrict extends TestCase { const SPEC_URL = 'https://raw.githubusercontent.com/jgm/CommonMark/master/spec.txt';