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.*
# Ignore compiled shared object files
*.so
# *.so
# Ignore coverage output files
coverage.out

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")
}
})
}
}

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

Binary file not shown.