From 649138c9c02fa1cffa7def0371d9232a6a22769b Mon Sep 17 00:00:00 2001 From: HiteshRepo Date: Sun, 28 Jan 2024 13:59:34 +0530 Subject: [PATCH] more test to trigger ci --- src/pkg/selectors/exchange_test.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/pkg/selectors/exchange_test.go b/src/pkg/selectors/exchange_test.go index 16d2541da..d1fbd7376 100644 --- a/src/pkg/selectors/exchange_test.go +++ b/src/pkg/selectors/exchange_test.go @@ -1638,3 +1638,23 @@ func (suite *ExchangeSelectorSuite) TestCategory_PathType() { }) } } + +func (suite *ExchangeSelectorSuite) Test_MoreTest() { + t := suite.T() + + tests := []struct { + name string + path1 string + path2 string + }{ + { + name: "same linux normal path", + path1: "/path/to/dir", + path2: "/path/to/dir", + }, + } + + for _, test := range tests { + assert.Equal(t, test.path1, test.path2) + } +}