Skip to content

Commit 02db1a5

Browse files
committed
Fixed camelCase in JSON Payload
1 parent fe8beff commit 02db1a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/server/test_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ async def stream_generator():
749749
b'"artifactId":"artifact-0"' in content
750750
) # Check for the actual JSON payload
751751
assert (
752-
b'"artifact_id":"artifact-1"' in content
752+
b'"artifactId":"artifact-1"' in content
753753
) # Check for the actual JSON payload
754754
assert (
755755
b'"artifactId":"artifact-2"' in content

0 commit comments

Comments
 (0)