From 7d3af6bf8300d8d53050569940a20021f74029b4 Mon Sep 17 00:00:00 2001 From: Emanuil Rusev Date: Fri, 9 Jan 2015 00:08:14 +0200 Subject: [PATCH] update commonmark test --- test/CommonMarkTest.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/CommonMarkTest.php b/test/CommonMarkTest.php index a166a82..9b8d116 100644 --- a/test/CommonMarkTest.php +++ b/test/CommonMarkTest.php @@ -20,9 +20,10 @@ class CommonMarkTest extends PHPUnit_Framework_TestCase */ function test_($section, $markdown, $expectedHtml) { - $parsedown = new Parsedown(); + $Parsedown = new Parsedown(); + $Parsedown->setUrlsLinked(false); - $actualHtml = $parsedown->text($markdown); + $actualHtml = $Parsedown->text($markdown); $actualHtml = $this->normalizeMarkup($actualHtml); $this->assertEquals($expectedHtml, $actualHtml);