Skip to content

Commit

Permalink
Code style changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Johnny Anderson dos Santos committed Dec 12, 2018
1 parent 5434efe commit 8c129ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions tests/TestUtility/TestFolder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ public static class TestIO
public static string GetRandomTempFolderPath()
{
var path = Path.Combine(
Path.GetTempPath()
, Path.GetRandomFileName()
Path.GetTempPath(),
Path.GetRandomFileName()
);

Directory.CreateDirectory(path);
Expand Down
6 changes: 3 additions & 3 deletions tests/TestUtility/TestHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ public static MSBuildInstance AddDotNetCoreToFakeInstance(this MSBuildInstance i
const string dotnetSdkResolver = "Microsoft.DotNet.MSBuildSdkResolver";

var directory = Path.Combine(
instance.MSBuildPath
, "SdkResolvers"
, dotnetSdkResolver
instance.MSBuildPath,
"SdkResolvers",
dotnetSdkResolver
);

Directory.CreateDirectory(directory);
Expand Down

0 comments on commit 8c129ec

Please sign in to comment.