r9162: case-sensitive changes
[clsql.git] / tests / test-syntax.lisp
index 62fe3f33803283f59303c8fa32c2cfb036311081..c2007f676f6130987337e33e87756519dd59ddd6 100644 (file)
     (clsql:sql [foo bar])
   "FOO.BAR")
 
-;; not sure about this one 
 (deftest :syntax/ident/3
     (clsql:sql ["foo" bar])
-  "foo.BAR")
+  "FOO.BAR")
 
 ;(deftest :syntax/ident/4
 ;    (clsql:sql [foo "bar"])
     (clsql:sql [foo bar :integer])
   "FOO.BAR INTEGER")
 
-;; not sure about this one 
 (deftest :syntax/ident/7
     (clsql:sql ["foo" bar :integer])
-  "foo.BAR INTEGER")
+  "FOO.BAR INTEGER")
 
 
 (deftest :syntax/value/1