Assert nullable on columns->at(4). Assertion was being made twice at(3).

This commit is contained in:
mrks 2020-05-25 22:15:49 +02:00 committed by GitHub
commit d05ef8ed0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ TEST(CreateStatementTest) {
ASSERT_EQ(stmt->columns->at(1)->nullable, false);
ASSERT_EQ(stmt->columns->at(2)->nullable, true);
ASSERT_EQ(stmt->columns->at(3)->nullable, false);
ASSERT_EQ(stmt->columns->at(3)->nullable, false);
ASSERT_EQ(stmt->columns->at(4)->nullable, false);
}
TEST(CreateAsSelectStatementTest) {