Skip to content

Commit 34104f8

Browse files
Fix editorconfig trailing whitespace in E2E tests
Remove trailing whitespace from all E2E test files and utils.py to comply with editorconfig standards. Co-Authored-By: Alex Peng <[email protected]>
1 parent 47b028b commit 34104f8

File tree

6 files changed

+268
-268
lines changed

6 files changed

+268
-268
lines changed

tools/server/tests/e2e/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ For local testing with larger models, modify the fixture configurations in `conf
184184
def test_my_e2e_workflow(pipeline_process, e2e_small_model_config):
185185
"""
186186
Test description here.
187-
187+
188188
Validates:
189189
- Point 1
190190
- Point 2
@@ -193,16 +193,16 @@ def test_my_e2e_workflow(pipeline_process, e2e_small_model_config):
193193
for key, value in e2e_small_model_config.items():
194194
if hasattr(pipeline_process, key):
195195
setattr(pipeline_process, key, value)
196-
196+
197197
# Start server
198198
pipeline_process.start()
199-
199+
200200
# Test workflow
201201
res = pipeline_process.make_request("POST", "/completion", data={
202202
"prompt": "Test",
203203
"n_predict": 8,
204204
})
205-
205+
206206
# Assertions
207207
assert res.status_code == 200
208208
assert "content" in res.body

0 commit comments

Comments
 (0)