From 556c66b496335b870610c612330f374ec1c0e3f1 Mon Sep 17 00:00:00 2001 From: Samson Gebre Date: Tue, 25 Nov 2025 16:02:28 -0800 Subject: [PATCH] fix: correct punctuation in comment for DummyAuth access_token --- tests/unit/data/test_sql_parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/data/test_sql_parse.py b/tests/unit/data/test_sql_parse.py index efbf606..31a6e4a 100644 --- a/tests/unit/data/test_sql_parse.py +++ b/tests/unit/data/test_sql_parse.py @@ -8,7 +8,7 @@ class DummyAuth: def _acquire_token(self, scope): class T: - access_token = "x" # no real token needed for parsing tests + access_token = "x" # no real token needed for parsing tests. return T()