Skip to content

Commit ffc912f

Browse files
committed
revert port setting
1 parent 624c3cb commit ffc912f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymysqlreplication/tests/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ class PyMySQLReplicationTestCase(base):
1818
def ignoredEvents(self):
1919
return []
2020

21-
def setUp(self, port=3306):
21+
def setUp(self):
2222

2323
db = os.environ.get('DB')
2424
# default
2525
self.database = {
2626
"host": "localhost",
2727
"user": "root",
2828
"passwd": "",
29-
"port": port,
29+
"port": 3306,
3030
"use_unicode": True,
3131
"charset": "utf8",
3232
"db": "pymysqlreplication_test"

0 commit comments

Comments
 (0)