Skip to content

Commit 12f1007

Browse files
committed
Changed staging url to new link
1 parent 0a58293 commit 12f1007

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integration/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def graphql_url(environ: str) -> str:
4848
if environ == Environ.PROD:
4949
return 'https://api.labelbox.com/graphql'
5050
elif environ == Environ.STAGING:
51-
return 'https://staging-api.labelbox.com/graphql'
51+
return 'https://api.lb-stage.xyz/graphql'
5252
elif environ == Environ.ONPREM:
5353
hostname = os.environ.get('LABELBOX_TEST_ONPREM_HOSTNAME', None)
5454
if hostname is None:
@@ -196,7 +196,7 @@ def sample_video() -> str:
196196
def sample_bulk_conversation() -> list:
197197
path_to_conversation = 'tests/integration/media/bulk_conversation.json'
198198
assert os.path.exists(path_to_conversation)
199-
# return path_to_conversation
199+
200200

201201
with open(path_to_conversation) as json_file:
202202
conversations = json.load(json_file)

0 commit comments

Comments
 (0)