From a3377855420f31e48e8281311b1e3761d13754a9 Mon Sep 17 00:00:00 2001 From: HiteshRepo Date: Sun, 28 Jan 2024 11:38:43 +0530 Subject: [PATCH] adds new test to trigger --- src/pkg/path/path_test.go | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/pkg/path/path_test.go b/src/pkg/path/path_test.go index 4f29ef83f..3dfee1fc1 100644 --- a/src/pkg/path/path_test.go +++ b/src/pkg/path/path_test.go @@ -746,3 +746,28 @@ func (suite *PathUnitSuite) Test_Stuff() { assert.Equal(t, test.path1, test.path2) } } + +func (suite *PathUnitSuite) Test_Stuff2() { + t := suite.T() + + tests := []struct { + name string + path1 string + path2 string + }{ + { + name: "same linux normal path", + path1: "/path/to/dir", + path2: "/path/to/dir", + }, + { + name: "test 2", + path1: "/path/to/dir", + path2: "/path/to/dir", + }, + } + + for _, test := range tests { + assert.Equal(t, test.path1, test.path2) + } +}