From 685d3ee65f3b4c2d3c74d8d4d898e526d38cf564 Mon Sep 17 00:00:00 2001 From: Periyasamy Palanisamy Date: Mon, 3 Jul 2023 10:21:32 +0530 Subject: [PATCH] Fix table test This fixes field type test on a ovsdb table. Signed-off-by: Periyasamy Palanisamy --- modelgen/table_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modelgen/table_test.go b/modelgen/table_test.go index b507a47d..6d4e2711 100644 --- a/modelgen/table_test.go +++ b/modelgen/table_test.go @@ -719,7 +719,7 @@ func TestFieldType(t *testing.T) { out string }{ {"t1", "c1", &singleValueSetSchema, "*string"}, - {"t1", "c2", &multipleValueSetSchema, "[2]string"}, + {"t1", "c2", &multipleValueSetSchema, "[]string"}, } for _, tt := range tests {