Преглед изворни кода

minor fix: wrong assignment (#23103)

tags/1.7.2
NeatGuyCoding пре 3 месеци
родитељ
комит
ae28ca0b8d
No account linked to committer's email address
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      api/tests/unit_tests/core/ops/test_config_entity.py

+ 1
- 1
api/tests/unit_tests/core/ops/test_config_entity.py Прегледај датотеку

@@ -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"

Loading…
Откажи
Сачувај