Use string interpolation for test string

Closes #9696
pull/9704/head
Bogdan 8 months ago
parent a70fa0fcfe
commit f93e136386

@ -130,7 +130,7 @@ namespace NzbDrone.Common.Disk
try try
{ {
var testPath = Path.Combine(path, "radarr_write_test.txt"); var testPath = Path.Combine(path, "radarr_write_test.txt");
var testContent = string.Format("This file was created to verify if '{0}' is writable. It should've been automatically deleted. Feel free to delete it.", path); var testContent = $"This file was created to verify if '{path}' is writable. It should've been automatically deleted. Feel free to delete it.";
WriteAllText(testPath, testContent); WriteAllText(testPath, testContent);
File.Delete(testPath); File.Delete(testPath);
return true; return true;

Loading…
Cancel
Save