fix: added dummy so file

This commit is contained in:
rupinder-syngh
2025-04-06 17:18:44 +05:30
parent 59c35702cb
commit 5ca64dfa36
3 changed files with 5 additions and 4 deletions

View File

@@ -260,21 +260,21 @@ func TestNewManagerSuccess(t *testing.T) {
{
name: "valid config with empty root",
cfg: &ManagerConfig{
Root: t.TempDir(),
Root: "./testdata",
RemoteRoot: "",
},
},
{
name: "valid config with root path",
cfg: &ManagerConfig{
Root: t.TempDir(),
Root: "./testdata",
RemoteRoot: "",
},
},
{
name: "valid config with remote root",
cfg: &ManagerConfig{
Root: t.TempDir(),
Root: "./testdata",
RemoteRoot: "",
},
},
@@ -404,6 +404,7 @@ func TestPublisherSuccess(t *testing.T) {
if p != tt.mockPublisher {
t.Errorf("Manager.Publisher() did not return the correct publisher")
}
})
}
}