2
0
mirror of https://github.com/frappe/bench.git synced 2024-06-15 14:42:22 +00:00

test: fix expected failing tests

This commit is contained in:
Ankush Menat 2023-07-15 18:51:50 +05:30
parent 697939e205
commit 672eca10a7

View File

@ -54,9 +54,9 @@ class TestBenchInit(TestBenchBase):
"webserver_port": 8000,
"socketio_port": 9000,
"file_watcher_port": 6787,
"redis_queue": "redis://localhost:11000",
"redis_socketio": "redis://localhost:13000",
"redis_cache": "redis://localhost:13000",
"redis_queue": "redis://127.0.0.1:11000",
"redis_socketio": "redis://127.0.0.1:13000",
"redis_cache": "redis://127.0.0.1:13000",
},
)
@ -66,9 +66,9 @@ class TestBenchInit(TestBenchBase):
"webserver_port": 8001,
"socketio_port": 9001,
"file_watcher_port": 6788,
"redis_queue": "redis://localhost:11001",
"redis_socketio": "redis://localhost:13001",
"redis_cache": "redis://localhost:13001",
"redis_queue": "redis://127.0.0.1:11001",
"redis_socketio": "redis://127.0.0.1:13001",
"redis_cache": "redis://127.0.0.1:13001",
},
)