Skip to content

Commit d15c14e

Browse files
committed
fix typo
1 parent acae191 commit d15c14e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/apps/sql_shell/commands/test_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def test_mysql(self, subprocess: MagicMock):
5151
"-u",
5252
"root",
5353
"-h",
54-
"127.1.0.0",
54+
"127.0.0.1",
5555
"-p",
5656
"3306",
5757
"piccolo",

tests/mysql_conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
DB = MySQLEngine(
77
config={
8-
"host": os.environ.get("MY_HOST", "127.1.0.0"),
8+
"host": os.environ.get("MY_HOST", "127.0.0.1"),
99
"port": int(os.environ.get("MY_PORT", 3306)),
1010
"user": os.environ.get("MY_USER", "root"),
1111
"password": os.environ.get("MY_PASSWORD", ""),

0 commit comments

Comments
 (0)