File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 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-
75import 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!" ,
You can’t perform that action at this time.
0 commit comments