From c942e4a2e9a97743850b4178ea66b3b33956e7f7 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Wed, 26 Dec 2012 12:49:06 -0500 Subject: [PATCH] Merge branch 'master' of github.com:roundcube/roundcubemail --- tests/Framework/Html2text.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/HtmlToText.php b/tests/Framework/Html2text.php similarity index 89% rename from tests/HtmlToText.php rename to tests/Framework/Html2text.php index b90c61a..1d89638 100644 --- a/tests/HtmlToText.php +++ b/tests/Framework/Html2text.php @@ -1,11 +1,11 @@ <?php /** - * Test class to test html2text class + * Test class to test rcube_html2text class * * @package Tests */ -class HtmlToText extends PHPUnit_Framework_TestCase +class rc_html2text extends PHPUnit_Framework_TestCase { function data_html2text() @@ -49,7 +49,7 @@ */ function test_html2text($title, $in, $out) { - $ht = new html2text(null, false, false); + $ht = new rcube_html2text(null, false, false); $ht->set_html($in); $res = $ht->get_text(); -- Gitblit v1.9.1