minor fix: wrong assignment (#23103)

This commit is contained in:
NeatGuyCoding 2025-07-29 16:36:21 +08:00 committed by GitHub
parent 51a6b9dc57
commit ae28ca0b8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class TestLangfuseConfig:
assert config.host == "https://custom.langfuse.com"
def test_valid_config_with_path(self):
host = host = "https://custom.langfuse.com/api/v1"
host = "https://custom.langfuse.com/api/v1"
config = LangfuseConfig(public_key="public_key", secret_key="secret_key", host=host)
assert config.public_key == "public_key"
assert config.secret_key == "secret_key"