This repository was archived by the owner on Jul 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
engine/e2e-test/api/engines Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ async def test_engines_install_uninstall_llamacpp_should_be_successful(self):
5555 @pytest .mark .asyncio
5656 async def test_engines_install_uninstall_llamacpp_with_only_version_should_be_failed (self ):
5757 # install first
58- data = {"variant" : "macos-arm64 " }
58+ data = {"variant" : "linux-avx-x64 " }
5959 install_response = requests .post (
6060 "http://127.0.0.1:3928/v1/engines/llama-cpp/install" , json = data
6161 )
@@ -72,7 +72,7 @@ async def test_engines_install_uninstall_llamacpp_with_only_version_should_be_fa
7272 @pytest .mark .asyncio
7373 async def test_engines_install_uninstall_llamacpp_with_variant_should_be_successful (self ):
7474 # install first
75- data = {"variant" : "macos-arm64 " }
75+ data = {"variant" : "linux-avx-x64 " }
7676 install_response = requests .post (
7777 "http://127.0.0.1:3928/v1/engines/llama-cpp/install" , json = data
7878 )
@@ -85,7 +85,7 @@ async def test_engines_install_uninstall_llamacpp_with_variant_should_be_success
8585 def test_engines_install_uninstall_llamacpp_with_specific_variant_and_version_should_be_successful (
8686 self ,
8787 ):
88- data = {"variant" : "macos-arm64 " , "version" : "b4920" }
88+ data = {"variant" : "linux-avx-x64 " , "version" : "b4920" }
8989 # install first
9090 install_response = requests .post (
9191 "http://localhost:3928/v1/engines/llama-cpp/install" , json = data
You can’t perform that action at this time.
0 commit comments