try fix config update

This commit is contained in:
Flaminel
2025-06-13 15:46:00 +03:00
parent 26bfa5adb2
commit 6a0641ef63
11 changed files with 172 additions and 133 deletions

View File

@@ -38,7 +38,7 @@ public class DynamicHttpClientProviderFixture : IDisposable
Name = "QBit Test",
Type = DownloadClientType.QBittorrent,
Enabled = true,
Host = "http://localhost:8080",
Host = new("http://localhost:8080"),
Username = "admin",
Password = "adminadmin"
};
@@ -52,7 +52,7 @@ public class DynamicHttpClientProviderFixture : IDisposable
Name = "Transmission Test",
Type = DownloadClientType.Transmission,
Enabled = true,
Host = "http://localhost:9091",
Host = new("http://localhost:9091"),
Username = "admin",
Password = "adminadmin",
UrlBase = "transmission"
@@ -67,7 +67,7 @@ public class DynamicHttpClientProviderFixture : IDisposable
Name = "Deluge Test",
Type = DownloadClientType.Deluge,
Enabled = true,
Host = "http://localhost:8112",
Host = new("http://localhost:8112"),
Username = "admin",
Password = "deluge"
};