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 Hsu <kennethhsu@gmail.com>2020-07-21 06:08:14 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2020-07-21 06:08:14 +0300
commitf47299d7a1aad6b28d83dc9cb65b10f4ba66c6f8 (patch)
tree554b08bf3fbaf9c8d0a1c6d9a880da5c83c82bc3 /Duplicati/UnitTest
parent47df16063ff1a9ba377807d77a83735c9016ca44 (diff)
Remove unnecessary call to Path.Combine.
Diffstat (limited to 'Duplicati/UnitTest')
-rw-r--r--Duplicati/UnitTest/RestoreHandlerTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Duplicati/UnitTest/RestoreHandlerTests.cs b/Duplicati/UnitTest/RestoreHandlerTests.cs
index 4c5ce91ea..4a92a1120 100644
--- a/Duplicati/UnitTest/RestoreHandlerTests.cs
+++ b/Duplicati/UnitTest/RestoreHandlerTests.cs
@@ -30,7 +30,7 @@ namespace Duplicati.UnitTest
// Issue #4148 described a situation where the folders containing the empty file were not recreated properly.
Dictionary<string, string> restoreOptions = new Dictionary<string, string>(this.TestOptions)
{
- ["restore-path"] = Path.Combine(this.RESTOREFOLDER),
+ ["restore-path"] = this.RESTOREFOLDER,
["dont-compress-restore-paths"] = "true"
};
using (Controller c = new Controller("file://" + this.TARGETFOLDER, restoreOptions, null))