summaryrefslogtreecommitdiff
path: root/test/alter.test
diff options
context:
space:
mode:
Diffstat (limited to 'test/alter.test')
-rw-r--r--test/alter.test3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/alter.test b/test/alter.test
index 1481bc2..aca71c4 100644
--- a/test/alter.test
+++ b/test/alter.test
@@ -349,7 +349,8 @@ db func trigfunc trigfunc
do_test alter-3.1.0 {
execsql {
CREATE TABLE t6(a, b, c);
- CREATE TRIGGER trig1 AFTER INSERT ON t6 BEGIN
+ -- Different case for the table name in the trigger.
+ CREATE TRIGGER trig1 AFTER INSERT ON T6 BEGIN
SELECT trigfunc('trig1', new.a, new.b, new.c);
END;
}