From c5216b36af81d14af83bc368288f031a36e43c5f Mon Sep 17 00:00:00 2001 From: X Date: Wed, 23 Sep 2026 03:24:21 -0700 Subject: [PATCH] fix(vllm-omni): remove invalid syntax in test.py (#12135) Signed-off-by: hendrixx-cnc --- backend/python/vllm-omni/test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend/python/vllm-omni/test.py b/backend/python/vllm-omni/test.py index ef8255725..6e49255e0 100644 --- a/backend/python/vllm-omni/test.py +++ b/backend/python/vllm-omni/test.py @@ -68,7 +68,7 @@ class TestBackendServicer(unittest.TestCase): width=512, height=512, step=20, - seed=42additional_information + seed=42 ) resp = stub.GenerateImage(req) self.assertTrue(resp.success) @@ -77,6 +77,5 @@ class TestBackendServicer(unittest.TestCase): self.fail("GenerateImage service failed") finally: self.tearDown() -additional_information if __name__ == "__main__": unittest.main()