removes test

This commit is contained in:
HiteshRepo 2024-01-28 20:18:17 +05:30
parent 2623698f9f
commit fbb8bc7fe7

View File

@ -741,23 +741,3 @@ func (suite *PathUnitSuite) Test_Stuff() {
assert.Equal(t, test.path1, test.path2)
}
}
func (suite *PathUnitSuite) Test_More() {
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)
}
}