Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / pear / console_table / tests / bug20181.phpt
diff --git a/vendor/pear/console_table/tests/bug20181.phpt b/vendor/pear/console_table/tests/bug20181.phpt
deleted file mode 100644 (file)
index 2a604b3..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-Bug #20181: setAlign() on non-zero column
---FILE--
-<?php
-error_reporting(E_ALL | E_NOTICE);
-if (file_exists(dirname(__FILE__) . '/../Table.php')) {
-    require_once dirname(__FILE__) . '/../Table.php';
-} else {
-    require_once 'Console/Table.php';
-}
-$table = new Console_Table();
-$table->setAlign(1, CONSOLE_TABLE_ALIGN_RIGHT);
-$table->setHeaders(array('f', 'bar'));
-$table->addRow(array('baz', 'b'));
-
-echo $table->getTable();
-?>
---EXPECT--
-+-----+-----+
-| f   | bar |
-+-----+-----+
-| baz |   b |
-+-----+-----+