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

2
.gitignore vendored
View File

@@ -131,7 +131,7 @@ dist
.pnp.* .pnp.*
# Ignore compiled shared object files # Ignore compiled shared object files
*.so # *.so
# Ignore coverage output files # Ignore coverage output files
coverage.out coverage.out

View File

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

BIN
pkg/plugin/testdata/encrypter.so vendored Normal file

Binary file not shown.