Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
lowercase to compile - not sure if this should matter
  • Loading branch information
griffio committed May 1, 2023
1 parent e86c4ad commit 54494fd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ insertCharacter:
INSERT INTO characters (name, description) VALUES (:name, :description);

selectNameLength:
SELECT LENGTH(name) FROM characters;
SELECT length(name) FROM characters;

selectDescriptionLength:
SELECT LENGTH(description) FROM characters;
SELECT length(description) FROM characters;

0 comments on commit 54494fd

Please sign in to comment.