From 9fc213ef783cbab27c3750e18bc45c69b27e7263 Mon Sep 17 00:00:00 2001 From: Richard Gong Date: Thu, 15 Feb 2024 20:21:13 +0000 Subject: [PATCH] Streaming attempt v2 --- ci/check_inference.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/check_inference.py b/ci/check_inference.py index 152f463..a2a925b 100644 --- a/ci/check_inference.py +++ b/ci/check_inference.py @@ -15,7 +15,7 @@ for line in iter(p.stdout.readline, b''): output += line.decode() - print(line.decode(), end="") + print(line.decode()) print("Asserting that the output contains the expected SQL query") assert "[SQL] SELECT" in output and "[/SQL]" in output