Skip to content

Commit 0fb64aa

Browse files
authored
fix: rename config (#174)
1 parent 48ed2c6 commit 0fb64aa

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/test_sdk_setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,11 +191,11 @@ def test_client_init_workers():
191191

192192

193193
def test_openai_default():
194+
from langfuse.openai import modifier, openai
195+
194196
importlib.reload(langfuse)
195197
importlib.reload(langfuse.openai)
196198

197-
from langfuse.openai import modifier, openai
198-
199199
public_key, secret_key, host = (
200200
os.environ["LANGFUSE_PUBLIC_KEY"],
201201
os.environ["LANGFUSE_SECRET_KEY"],

tests/test_task_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def handler(request: Request):
7777
tm.add_task({"foo": "bar"})
7878
tm.flush()
7979

80-
assert count > 3
80+
assert count >= 3
8181

8282

8383
@pytest.mark.timeout(20)

0 commit comments

Comments
 (0)