From 1089033319ec8ffbd27205b4bf7f85b7cf652746 Mon Sep 17 00:00:00 2001 From: Zach Musgrave Date: Wed, 14 Aug 2019 15:13:29 -0700 Subject: [PATCH] Fixed output in bats test Signed-off-by: Zach Musgrave --- bats/create-tables.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bats/create-tables.bats b/bats/create-tables.bats index f9a4f6b3fa..281a793dd0 100755 --- a/bats/create-tables.bats +++ b/bats/create-tables.bats @@ -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 }