Hopefully finalizes code work.

This commit is contained in:
Neerti
2020-02-20 21:48:58 -05:00
parent 54a75927ff
commit 00b24d93c8
4 changed files with 32 additions and 25 deletions

View File

@@ -20,7 +20,7 @@
// Act.
SSsqlite.insert_feedback(author = test_author, topic = test_topic, content = test_content, sqlite_object = stub_sqlite_db)
var/database/query/Q = new("SELECT * FROM feedback")
var/database/query/Q = new("SELECT * FROM [SQLITE_TABLE_FEEDBACK]")
Q.Execute(stub_sqlite_db)
SSsqlite.sqlite_check_for_errors(Q, "Sqlite Insert Unit Test")
Q.NextRow()