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

This commit is contained in:
Mateo Gonzales Navarrete 2020-05-25 15:04:39 -05:00
parent bba65d8f35
commit 4ca664cdd3
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) {