more test to trigger ci

This commit is contained in:
HiteshRepo 2024-01-28 13:59:34 +05:30
parent d90238e828
commit 649138c9c0

View File

@ -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)
}
}