Fixed output in bats test

Signed-off-by: Zach Musgrave <zach@liquidata.co>
This commit is contained in:
Zach Musgrave
2019-08-14 15:13:29 -07:00
parent f9fc81572b
commit 1089033319

View File

@@ -279,7 +279,7 @@ teardown() {
[ "$status" -eq 0 ]
[[ "$output" =~ "CREATE TABLE \`test\`" ]] || false
[[ "$output" =~ "\`pk\` int not null comment 'tag:0'" ]] || false
[[ "$output" =~ "\`c1\` varchar comment 'tag:1'" ]] || false
[[ "$output" =~ "\`c1\` varchar(1024) comment 'tag:1'" ]] || false
[[ "$output" =~ "primary key (\`pk\`)" ]] || false
}