Skip to content

Commit 25d855c

Browse files
committed
whitespace
1 parent 1ba17f9 commit 25d855c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test/Utilities/Microsoft.Testing.TestInfrastructure/TestAssetFixtureBase.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ public async Task InitializeAsync() =>
3636
// Generate all projects into the same temporary base folder, but separate subdirectories, so we can reference one from other.
3737
#if NET
3838
await Parallel.ForEachAsync(GetAssetsToGenerate(), async (asset, _) =>
39-
{
40-
TestAsset testAsset = await TestAsset.GenerateAssetAsync(asset.Name, asset.Code, _tempDirectory);
41-
DotnetMuxerResult result = await DotnetCli.RunAsync($"build {testAsset.TargetAssetPath} -c Release", _nugetGlobalPackagesDirectory.Path, callerMemberName: asset.Name);
42-
testAsset.DotnetResult = result;
43-
_testAssets.TryAdd(asset.ID, testAsset);
44-
});
39+
{
40+
TestAsset testAsset = await TestAsset.GenerateAssetAsync(asset.Name, asset.Code, _tempDirectory);
41+
DotnetMuxerResult result = await DotnetCli.RunAsync($"build {testAsset.TargetAssetPath} -c Release", _nugetGlobalPackagesDirectory.Path, callerMemberName: asset.Name);
42+
testAsset.DotnetResult = result;
43+
_testAssets.TryAdd(asset.ID, testAsset);
44+
});
4545
#else
4646
await Task.WhenAll(GetAssetsToGenerate().Select(async asset =>
4747
{

0 commit comments

Comments
 (0)