From 7a9678b4a26b2356cbe4abedd968c2503f4d5e94 Mon Sep 17 00:00:00 2001 From: HiteshRepo Date: Tue, 30 Jan 2024 15:52:41 +0530 Subject: [PATCH] re run --- src/pkg/path/path_test.go | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/pkg/path/path_test.go b/src/pkg/path/path_test.go index 0973e8e21..dce228cf8 100644 --- a/src/pkg/path/path_test.go +++ b/src/pkg/path/path_test.go @@ -721,23 +721,3 @@ 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) - } -}