aboutsummaryrefslogtreecommitdiffstats
path: root/tests/dbal
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2017-12-31 11:53:15 +0100
committerMarc Alexander <admin@m-a-styles.de>2018-01-01 18:56:20 +0100
commita999718b42742c9911a24a74cf60f80e196d5cf8 (patch)
treef87c2792a77176d00d29f12c8787d7c3bf5ea55a /tests/dbal
parentede339c1c8b19fa01a61594d231902013ef473b0 (diff)
downloadforums-a999718b42742c9911a24a74cf60f80e196d5cf8.tar
forums-a999718b42742c9911a24a74cf60f80e196d5cf8.tar.gz
forums-a999718b42742c9911a24a74cf60f80e196d5cf8.tar.bz2
forums-a999718b42742c9911a24a74cf60f80e196d5cf8.tar.xz
forums-a999718b42742c9911a24a74cf60f80e196d5cf8.zip
[ticket/15055] Support console questions on windows
PHPBB3-15055
Diffstat (limited to 'tests/dbal')
-rw-r--r--tests/dbal/db_tools_test.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/dbal/db_tools_test.php b/tests/dbal/db_tools_test.php
index dbe2c2909a..72a3718662 100644
--- a/tests/dbal/db_tools_test.php
+++ b/tests/dbal/db_tools_test.php
@@ -462,10 +462,6 @@ class phpbb_dbal_db_tools_test extends phpbb_database_test_case
// Index name has > 30 chars - that should not be possible.
$too_long_index_name = str_repeat('i', 31);
$this->assertFalse($this->tools->sql_index_exists('prefix_table_name', $too_long_index_name));
- if (strpos($this->tools->sql_layer, 'mssql') === false)
- {
- $this->setExpectedTriggerError(E_USER_ERROR);
- }
$this->tools->sql_create_index('prefix_table_name', $too_long_index_name, array('c_timestamp'));
}
}