mirror of https://github.com/portainer/portainer
fix(datastore): fix test for EdgePortainerUrl [EE-2967] (#6765)
parent
85a7b7e0fc
commit
355674cf22
|
@ -86,7 +86,7 @@ func TestRemoveWithOptions(t *testing.T) {
|
||||||
|
|
||||||
err = store.removeWithOptions(options)
|
err = store.removeWithOptions(options)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("RemoveWithOptions should successfully remove file; err=%w", err)
|
t.Errorf("RemoveWithOptions should successfully remove file; err=%v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
if isFileExist(f.Name()) {
|
if isFileExist(f.Name()) {
|
||||||
|
|
|
@ -591,6 +591,7 @@
|
||||||
"DisplayDonationHeader": false,
|
"DisplayDonationHeader": false,
|
||||||
"DisplayExternalContributors": false,
|
"DisplayExternalContributors": false,
|
||||||
"EdgeAgentCheckinInterval": 5,
|
"EdgeAgentCheckinInterval": 5,
|
||||||
|
"EdgePortainerUrl": "",
|
||||||
"EnableEdgeComputeFeatures": false,
|
"EnableEdgeComputeFeatures": false,
|
||||||
"EnableHostManagementFeatures": false,
|
"EnableHostManagementFeatures": false,
|
||||||
"EnableTelemetry": true,
|
"EnableTelemetry": true,
|
||||||
|
|
Loading…
Reference in New Issue