浏览代码

minor fix: wrong assignment (#23103)

tags/1.7.2
NeatGuyCoding 3 个月前
父节点
当前提交
ae28ca0b8d
没有帐户链接到提交者的电子邮件
共有 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"

正在加载...
取消
保存