Skip to content

Commit 62749e8

Browse files
Copilotdavidfowl
andcommitted
Rename shared TempDirectory helper class to TestTempDirectory
Co-authored-by: davidfowl <[email protected]>
1 parent 109ba23 commit 62749e8

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

tests/Aspire.Hosting.Tests/MSBuildTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
using System.Diagnostics;
55
using System.Text;
6-
using TestTempDirectory = TempDirectory;
76

87
namespace Aspire.Hosting.Tests;
98

tests/Aspire.Hosting.Tests/PublishAsDockerfileTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
using Aspire.Hosting.Utils;
77
using Microsoft.AspNetCore.InternalTesting;
8-
using TestTempDirectory = TempDirectory;
98

109
namespace Aspire.Hosting.Tests;
1110

tests/Aspire.Hosting.Tests/Publishing/ResourceContainerImageBuilderTests.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
using Microsoft.AspNetCore.InternalTesting;
1414
using Microsoft.Extensions.DependencyInjection;
1515
using Microsoft.Extensions.Logging;
16-
using TestTempDirectory = TempDirectory;
1716

1817
namespace Aspire.Hosting.Tests.Publishing;
1918

tests/Shared/TempDirectory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33

4-
public sealed class TempDirectory : IDisposable
4+
public sealed class TestTempDirectory : IDisposable
55
{
66
public string Path { get; } = Directory.CreateTempSubdirectory(".aspire-tests").FullName;
77

0 commit comments

Comments
 (0)