diff options
author | Marc Alexander <admin@m-a-styles.de> | 2017-12-31 11:53:15 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2018-01-01 18:56:20 +0100 |
commit | a999718b42742c9911a24a74cf60f80e196d5cf8 (patch) | |
tree | f87c2792a77176d00d29f12c8787d7c3bf5ea55a /tests/dbal | |
parent | [ticket/15055] Extend build matrix and trim text in extension_acp_test (diff) | |
download | phpbb-a999718b42742c9911a24a74cf60f80e196d5cf8.tar.gz phpbb-a999718b42742c9911a24a74cf60f80e196d5cf8.tar.bz2 phpbb-a999718b42742c9911a24a74cf60f80e196d5cf8.zip |
[ticket/15055] Support console questions on windows
PHPBB3-15055
Diffstat (limited to 'tests/dbal')
-rw-r--r-- | tests/dbal/db_tools_test.php | 4 |
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')); } } |