Environment variables sometimes lie!

pull/4/head
Keivan Beigi 8 years ago
parent c42e4d682c
commit 2e36538dcd

@ -196,7 +196,7 @@ namespace NzbDrone.Common.Test
public void get_actual_casing_should_return_actual_casing_for_local_file_in_windows() public void get_actual_casing_should_return_actual_casing_for_local_file_in_windows()
{ {
WindowsOnly(); WindowsOnly();
var path = Environment.ExpandEnvironmentVariables("%SystemRoot%\\System32"); var path = Directory.GetDirectories("C:\\")[3];
path.ToUpper().GetActualCasing().Should().Be(path); path.ToUpper().GetActualCasing().Should().Be(path);
path.ToLower().GetActualCasing().Should().Be(path); path.ToLower().GetActualCasing().Should().Be(path);
} }

Loading…
Cancel
Save