@@ -18,7 +18,6 @@ Feature: TLS configuration for remote inference providers
1818 {"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
1919 """
2020 Then The status code of the response is 200
21- And The body of the response contains Hello from the TLS mock inference server
2221
2322 Scenario : Inference succeeds with CA certificate verification
2423 Given Llama Stack is configured with CA certificate verification
@@ -29,7 +28,6 @@ Feature: TLS configuration for remote inference providers
2928 {"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
3029 """
3130 Then The status code of the response is 200
32- And The body of the response contains Hello from the TLS mock inference server
3331
3432 Scenario : Inference fails when TLS verify is true against self-signed cert
3533 Given Llama Stack is configured with TLS verification enabled
@@ -51,7 +49,6 @@ Feature: TLS configuration for remote inference providers
5149 {"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
5250 """
5351 Then The status code of the response is 200
54- And The body of the response contains Hello from the TLS mock inference server
5552
5653 Scenario : Inference succeeds with TLS minimum version TLSv1.3
5754 Given Llama Stack is configured with TLS minimum version "TLSv1.3"
@@ -62,4 +59,3 @@ Feature: TLS configuration for remote inference providers
6259 {"query": "Say hello", "model": "mock-tls-model", "provider": "tls-openai"}
6360 """
6461 Then The status code of the response is 200
65- And The body of the response contains Hello from the TLS mock inference server
0 commit comments