Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2020-10-19 01:44:10 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2020-10-19 01:44:10 +0300
commit5fd1c883e38b891edd04c0d6b069a6507c56068c (patch)
tree73d9e9517c1bc061a95f3c3f53376f1a447909bd /Duplicati/UnitTest
parent9b977b7ba04a940868754fd15a37b99fbd77f1bd (diff)
Changed to using a proxied host to reduce S3 transfer charges from unittests
Diffstat (limited to 'Duplicati/UnitTest')
-rw-r--r--Duplicati/UnitTest/CommandLineOperationsTests.cs2
-rw-r--r--Duplicati/UnitTest/GeneralBlackBoxTesting.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Duplicati/UnitTest/CommandLineOperationsTests.cs b/Duplicati/UnitTest/CommandLineOperationsTests.cs
index ef2785c1b..a60aa4685 100644
--- a/Duplicati/UnitTest/CommandLineOperationsTests.cs
+++ b/Duplicati/UnitTest/CommandLineOperationsTests.cs
@@ -25,7 +25,7 @@ namespace Duplicati.UnitTest
{
public class CommandLineOperationsTests : BasicSetupHelper
{
- private static readonly string S3_URL = $"https://s3.amazonaws.com/duplicati-test-file-hosting/";
+ private static readonly string S3_URL = $"https://testfiles.duplicati.com/";
/// <summary>
/// The log tag
diff --git a/Duplicati/UnitTest/GeneralBlackBoxTesting.cs b/Duplicati/UnitTest/GeneralBlackBoxTesting.cs
index 75bb9fbf3..50a955957 100644
--- a/Duplicati/UnitTest/GeneralBlackBoxTesting.cs
+++ b/Duplicati/UnitTest/GeneralBlackBoxTesting.cs
@@ -68,7 +68,7 @@ namespace Duplicati.UnitTest
using (WebClient client = new WebClient())
{
- client.DownloadFile($"https://s3.amazonaws.com/duplicati-test-file-hosting/{this.zipFilename}", this.zipFilepath);
+ client.DownloadFile($"https://testfiles.duplicati.com/{this.zipFilename}", this.zipFilepath);
}
System.IO.Compression.ZipFile.ExtractToDirectory(this.zipFilepath, BASEFOLDER);