From bd6f71a3c82e9e91f548fc40b16ea4c839f4aa7e Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 11 Jan 2019 15:32:26 -0500 Subject: [PATCH] Update colum tests We have tests for internal apis now, and they catch when we change those apis. Yay. Closes: #2460 Approved by: alexlarsson --- tests/testcommon.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/testcommon.c b/tests/testcommon.c index 1b7fb219..93cf43b5 100644 --- a/tests/testcommon.c +++ b/tests/testcommon.c @@ -449,10 +449,10 @@ static void test_columns (void) { Column columns[] = { - { "column1", "col1", "col1", 1, 1 }, - { "install", "install", "install", 0, 1 }, - { "helper", "helper", "helper", 1, 0 }, - { "column2", "col2", "col2", 0, 0 }, + { "column1", "col1", "col1", 0, 0, 1, 1 }, + { "install", "install", "install", 0, 0, 0, 1 }, + { "helper", "helper", "helper", 0, 0, 1, 0 }, + { "column2", "col2", "col2", 0, 0, 0, 0 }, { NULL, } }; Column *cols;