diff --git a/test_tjnetwork.py b/test_tjnetwork.py index a287a7d..bacb0d2 100644 --- a/test_tjnetwork.py +++ b/test_tjnetwork.py @@ -28,7 +28,7 @@ class TestApi: write(p, f"create table {p} (a varchar(32))") write(p, f"insert into {p} values ('你好')") - result = read_all(p, f"select * from { p}") + result = read_all(p, f"select * from {p}") assert result == [{'a': '你好'}] self.leave(p)