ソースを参照

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"

読み込み中…
キャンセル
保存