summaryrefslogtreecommitdiffstats
path: root/api4/image_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/image_test.go')
-rw-r--r--api4/image_test.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/api4/image_test.go b/api4/image_test.go
index aa3619cdd..3b029ac72 100644
--- a/api4/image_test.go
+++ b/api4/image_test.go
@@ -28,6 +28,15 @@ func TestGetImage(t *testing.T) {
require.NoError(t, err)
r.Header.Set(model.HEADER_AUTH, th.Client.AuthType+" "+th.Client.AuthToken)
+ imageProxyType := th.App.Config().ServiceSettings.ImageProxyType
+ imageProxyOptions := th.App.Config().ServiceSettings.ImageProxyOptions
+ imageProxyURL := th.App.Config().ServiceSettings.ImageProxyURL
+ defer func() {
+ th.App.UpdateConfig(func(cfg *model.Config) { cfg.ServiceSettings.ImageProxyType = imageProxyType })
+ th.App.UpdateConfig(func(cfg *model.Config) { cfg.ServiceSettings.ImageProxyOptions = imageProxyOptions })
+ th.App.UpdateConfig(func(cfg *model.Config) { cfg.ServiceSettings.ImageProxyOptions = imageProxyURL })
+ }()
+
th.App.UpdateConfig(func(cfg *model.Config) {
cfg.ServiceSettings.ImageProxyType = nil
})