Skip to content

Commit 1602674

Browse files
committed
👌 IMPROVE: conftest
1 parent ab23911 commit 1602674

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

tests/conftest.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
"""
2-
Shared test configuration and fixtures for Langbase SDK tests.
2+
Shared test config and fixtures for Langbase SDK tests.
33
"""
44

5-
import json
6-
75
import pytest
8-
import responses
96

107

118
@pytest.fixture
@@ -34,14 +31,14 @@ def mock_responses():
3431
return {
3532
# Pipes responses
3633
"pipe_list": [
37-
{"name": "test-pipe", "description": "Test pipe", "status": "deployed"},
38-
{"name": "another-pipe", "description": "Another pipe", "status": "draft"},
34+
{"name": "test-pipe", "description": "Test pipe", "status": "public"},
35+
{"name": "another-pipe", "description": "Another pipe", "status": "private"},
3936
],
4037
"pipe_create": {
4138
"name": "new-pipe",
4239
"api_key": "pipe-api-key",
4340
"description": "A test pipe",
44-
"status": "draft",
41+
"status": "public",
4542
},
4643
"pipe_run": {
4744
"completion": "Hello, world!",

0 commit comments

Comments
 (0)