From 9fb16018dc738e8f5156e89df565e3b2423bdd67 Mon Sep 17 00:00:00 2001 From: Richard Gong Date: Thu, 15 Feb 2024 19:50:47 +0000 Subject: [PATCH] no longer bytestring --- 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 a502c4c..152f463 100644 --- a/ci/check_inference.py +++ b/ci/check_inference.py @@ -18,4 +18,4 @@ print(line.decode(), end="") print("Asserting that the output contains the expected SQL query") - assert b"[SQL] SELECT" in output and b"[/SQL]" in output + assert "[SQL] SELECT" in output and "[/SQL]" in output