Jelajahi Sumber

allow unit tests to pass

El RIDO 3 tahun lalu
induk
melakukan
2a162d075c
2 mengubah file dengan 7 tambahan dan 1 penghapusan
  1. 3 1
      tpl/yourlsproxy.php
  2. 4 0
      tst/ViewTest.php

+ 3 - 1
tpl/yourlsproxy.php

@@ -17,7 +17,9 @@ if (empty($ERROR)) :
 <?php
 else:
 ?>
-		<p><?php echo I18n::_('Could not create paste: %s', $ERROR); ?></p>
+		<div id="errormessage">
+			<p><?php echo I18n::_('Could not create paste: %s', $ERROR); ?></p>
+		</div>
 <?php
 endif;
 ?>

+ 4 - 0
tst/ViewTest.php

@@ -106,6 +106,10 @@ class ViewTest extends PHPUnit_Framework_TestCase
                 $content,
                 $template . ': outputs error correctly'
             );
+            if ($template === 'yourlsproxy') {
+                // yourlsproxy template only displays error message
+                continue;
+            }
             $this->assertRegExp(
                 '#<[^>]+id="password"[^>]*>#',
                 $content,