From 2e6a0208b358b42dcda426becc2dbc43cb28e61d Mon Sep 17 00:00:00 2001 From: Markus Braunbeck <32308695+mr-ks@users.noreply.github.com> Date: Tue, 12 Mar 2024 11:56:27 +0100 Subject: [PATCH] chore: feed Azure DevOps Go Plugin into table info checker --- backend/plugins/table_info_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/plugins/table_info_test.go b/backend/plugins/table_info_test.go index b31bff905ab..7360b978bb2 100644 --- a/backend/plugins/table_info_test.go +++ b/backend/plugins/table_info_test.go @@ -22,6 +22,7 @@ import ( "github.com/apache/incubator-devlake/helpers/unithelper" ae "github.com/apache/incubator-devlake/plugins/ae/impl" + azuredevops "github.com/apache/incubator-devlake/plugins/azuredevops_go/impl" bamboo "github.com/apache/incubator-devlake/plugins/bamboo/impl" bitbucket "github.com/apache/incubator-devlake/plugins/bitbucket/impl" bitbucket_server "github.com/apache/incubator-devlake/plugins/bitbucket_server/impl" @@ -58,6 +59,7 @@ func Test_GetPluginTablesInfo(t *testing.T) { ValidatePluginCount: true, }) checker.FeedIn("ae/models", ae.AE{}.GetTablesInfo) + checker.FeedIn("azuredevops_go/models", azuredevops.Azuredevops{}.GetTablesInfo) checker.FeedIn("bamboo/models", bamboo.Bamboo{}.GetTablesInfo) checker.FeedIn("bitbucket/models", bitbucket.Bitbucket{}.GetTablesInfo) checker.FeedIn("bitbucket_server/models", bitbucket_server.BitbucketServer{}.GetTablesInfo)