Skip to content

Commit

Permalink
put the TestFileCacheTestSuite back in file_cache_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Dabnsky committed Jun 11, 2024
1 parent c9f1846 commit 1bef051
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions component/file_cache/file_cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import (
"strconv"
"strings"
"syscall"
"testing"
"time"

"github.com/Seagate/cloudfuse/common"
Expand Down Expand Up @@ -1677,3 +1678,6 @@ func (suite *fileCacheTestSuite) TestHandleDataChange() {

// In order for 'go test' to run this suite, we need to create
// a normal test function and pass our suite to suite.Run
func TestFileCacheTestSuite(t *testing.T) {
suite.Run(t, new(fileCacheTestSuite))
}

0 comments on commit 1bef051

Please sign in to comment.