From 9909335b7636767f71ef228007f1e647040151f1 Mon Sep 17 00:00:00 2001 From: HiteshRepo Date: Sun, 28 Jan 2024 13:51:34 +0530 Subject: [PATCH] triggers ci --- .../repository/repository_unexported_test.go | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/pkg/repository/repository_unexported_test.go b/src/pkg/repository/repository_unexported_test.go index 1346bd17a..b33e563bd 100644 --- a/src/pkg/repository/repository_unexported_test.go +++ b/src/pkg/repository/repository_unexported_test.go @@ -1023,3 +1023,23 @@ func (suite *RepositoryModelIntgSuite) TestGetBackupErrors() { }) } } + +func (suite *RepositoryModelIntgSuite) Test_SomeMore() { + 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) + } +}