summaryrefslogtreecommitdiffstats
path: root/tests/test_auth.py
diff options
context:
space:
mode:
authorMitsuo Tokumori <[email protected]>2023-10-29 14:28:43 -0500
committerMitsuo Tokumori <[email protected]>2023-10-29 14:28:43 -0500
commit3b22586890425c8b8e555bce649649228b26c02b (patch)
tree63c9cdb40535ab9de998854a41523ecf36e728b6 /tests/test_auth.py
parent43f9d78f8c00e13732b809519f0529ac293fd5ab (diff)
downloadustayml-3b22586890425c8b8e555bce649649228b26c02b.tar.gz
ustayml-3b22586890425c8b8e555bce649649228b26c02b.tar.bz2
ustayml-3b22586890425c8b8e555bce649649228b26c02b.zip
Add students blueprint using psycopg
Diffstat (limited to 'tests/test_auth.py')
-rw-r--r--tests/test_auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_auth.py b/tests/test_auth.py
index 6684f43..d2735dc 100644
--- a/tests/test_auth.py
+++ b/tests/test_auth.py
@@ -12,7 +12,7 @@ def test_register(client, app):
with app.app_context():
assert get_db().execute(
- "SELECT * FROM user WHERE username = 'a'",
+ "SELECT * FROM \"user\" WHERE username = 'a'",
).fetchone() is not None