Skip to content

Commit

Permalink
test: fix expected failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ankush committed Jul 15, 2023
1 parent 08204b5 commit 1780233
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bench/tests/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ def test_multiple_benches(self):
"webserver_port": 8000,
"socketio_port": 9000,
"file_watcher_port": 6787,
"redis_queue": "redis://localhost:11000",
"redis_socketio": "redis://localhost:12000",
"redis_cache": "redis://localhost:13000",
"redis_queue": "redis://127.0.0.1:11000",
"redis_socketio": "redis://127.0.0.1:12000",
"redis_cache": "redis://127.0.0.1:13000",
},
)

Expand All @@ -66,9 +66,9 @@ def test_multiple_benches(self):
"webserver_port": 8001,
"socketio_port": 9001,
"file_watcher_port": 6788,
"redis_queue": "redis://localhost:11001",
"redis_socketio": "redis://localhost:12001",
"redis_cache": "redis://localhost:13001",
"redis_queue": "redis://127.0.0.1:11001",
"redis_socketio": "redis://127.0.0.1:12001",
"redis_cache": "redis://127.0.0.1:13001",
},
)

Expand Down

0 comments on commit 1780233

Please sign in to comment.