Adding unit tests for DictionaryRepository.
This commit is contained in:
@@ -117,7 +117,8 @@ namespace Umbraco.Core.IO
|
||||
|
||||
public Stream OpenFile(string path)
|
||||
{
|
||||
return File.OpenRead(GetFullPath(path));
|
||||
var fullPath = GetFullPath(path);
|
||||
return File.OpenRead(fullPath);
|
||||
}
|
||||
|
||||
public void DeleteFile(string path)
|
||||
|
||||
Reference in New Issue
Block a user