change test port to 8889 (docker desktop is now using port 8888 which blocks the test from working on mac) (#2972)

This commit is contained in:
rkuo-danswer 2024-10-28 11:33:32 -07:00 committed by GitHub
parent 1d89fea73e
commit e05846db9f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -110,7 +110,7 @@ def test_web_pruning(reset: None, vespa_client: vespa_fixture) -> None:
test_filename = os.path.realpath(__file__)
test_directory = os.path.dirname(test_filename)
with tempfile.TemporaryDirectory() as temp_dir:
port = 8888
port = 8889
website_src = os.path.join(test_directory, "website")
website_tgt = os.path.join(temp_dir, "website")