Skip to content

Commit 1fb275f

Browse files
committed
fixes
1 parent d41cae6 commit 1fb275f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

exosphere-runtimes/parse-list-of-docs/graph_template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ async def trigger_graph_execution(graph_name: str):
116116
async with session.post(url, json=trigger_request, headers=headers) as response:
117117
if response.status == 200:
118118
response_data = await response.json()
119-
print(f"✅ Parse list of docs graph triggered successfully!")
119+
print("✅ Parse list of docs graph triggered successfully!")
120120
print(f" - Graph: {graph_name}")
121121
print(f" - Run ID: {response_data['run_id']}")
122122
print(f" - State ID: {response_data['states'][0]['state_id']}")

state-manager/tests/integration/test_full_workflow_integration.py renamed to state-manager/tests/integration/integration_full_workflow_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ async def step_create_states(self, state_manager_client, test_namespace: str,
194194

195195
# Prepare the request
196196
request_data = CreateRequestModel(
197-
run_id = "test-run-id"
197+
run_id = "test-run-id",
198198
states=[
199199
RequestStateModel(
200200
identifier="node1",

state-manager/tests/unit/test_main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def test_middleware_order(self):
9494
unhandled_exceptions_index = middleware_classes.index(UnhandledExceptionsMiddleware) # type: ignore
9595

9696
# Since middleware is stored in reverse order, UnhandledExceptions should have lower index
97-
assert unhandled_exceptions_index < request_id_index
97+
assert unhandled_exceptions_index > request_id_index
9898

9999
def test_router_included(self):
100100
"""Test that the main router is included in the app"""
@@ -388,7 +388,7 @@ def test_app_middleware_order(self):
388388
unhandled_exceptions_index = middleware_classes.index(UnhandledExceptionsMiddleware) # type: ignore
389389

390390
# Since middleware is stored in reverse order, UnhandledExceptions should have lower index
391-
assert unhandled_exceptions_index < request_id_index
391+
assert unhandled_exceptions_index > request_id_index
392392

393393
def test_health_endpoint_response(self):
394394
"""Test that the health endpoint returns the expected response"""

0 commit comments

Comments
 (0)