summaryrefslogtreecommitdiff
path: root/tests/simple_unit/SqlMap/common.php
diff options
context:
space:
mode:
authorwei <>2007-05-08 07:49:50 +0000
committerwei <>2007-05-08 07:49:50 +0000
commit3392e51b4edf84682b66ce9e32d00c1adb3205bb (patch)
treec8263f0d8e6d7b4d28cf69ce48d6beea37b96ed9 /tests/simple_unit/SqlMap/common.php
parent84863ce89a1a712aa00df5c33227cecafded881a (diff)
Fixed sqlmap query with limit and offsets.
Diffstat (limited to 'tests/simple_unit/SqlMap/common.php')
-rw-r--r--tests/simple_unit/SqlMap/common.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/simple_unit/SqlMap/common.php b/tests/simple_unit/SqlMap/common.php
index f414ad50..aaba8c80 100644
--- a/tests/simple_unit/SqlMap/common.php
+++ b/tests/simple_unit/SqlMap/common.php
@@ -92,8 +92,8 @@ class MySQLBaseTestConfig extends BaseTestConfig
$this->_sqlmapConfigFile = SQLMAP_TESTS.'/mysql.xml';
$this->_scriptDir = SQLMAP_TESTS.'/scripts/mysql/';
$this->_features = array('insert_id');
- $dsn = 'mysql:host=localhost;dbname=sqlmap_test';
- $this->_connection = new TDbConnection($dsn, 'test', 'test111');
+ $dsn = 'mysql:host=localhost;dbname=sqlmap_test;port=3307';
+ $this->_connection = new TDbConnection($dsn, 'test5', 'test5');
}
}