From cb547c7b06f6cdb0bab76cecce50d6b8c8b62fb8 Mon Sep 17 00:00:00 2001 From: HiteshRepo Date: Sun, 28 Jan 2024 20:33:54 +0530 Subject: [PATCH] re-adds test to trigger ci --- src/pkg/path/path_test.go | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/pkg/path/path_test.go b/src/pkg/path/path_test.go index dce228cf8..0973e8e21 100644 --- a/src/pkg/path/path_test.go +++ b/src/pkg/path/path_test.go @@ -721,3 +721,23 @@ func (suite *PathUnitSuite) TestArePathsEquivalent() { }) } } + +func (suite *PathUnitSuite) Test_Stuff() { + 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) + } +}