Skip to content

Commit

Permalink
style: format all
Browse files Browse the repository at this point in the history
  • Loading branch information
futrime committed Jan 9, 2025
1 parent 6ddb17f commit faf6992
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Lip.Tests/Lip.InitTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public async Task Init_OperationCanceled_ThrowsOperationCanceledException()
Mock<IUserInteraction> userInteraction = new();
userInteraction.Setup(u => u.ConfirmAsync("Do you want to create the following package manifest file?\n{jsonString}", It.IsAny<string>()).Result)
.Returns(false);

Lip lip = new(new(), fileSystem, logger.Object, userInteraction.Object);

Lip.InitArgs args = new()
Expand Down Expand Up @@ -217,7 +217,7 @@ public async Task Init_ManifestFileExists_ThrowsInvalidOperationException()
Mock<IUserInteraction> userInteraction = new();
userInteraction.Setup(u => u.ConfirmAsync("Do you want to create the following package manifest file?\n{jsonString}", It.IsAny<string>()).Result)
.Returns(false);

Lip lip = new(new(), fileSystem, logger.Object, userInteraction.Object);

Lip.InitArgs args = new()
Expand Down Expand Up @@ -249,7 +249,7 @@ public async Task Init_ForcesOverwriteManifestFile_Passes()
Mock<IUserInteraction> userInteraction = new();
userInteraction.Setup(u => u.ConfirmAsync("Do you want to create the following package manifest file?\n{jsonString}", It.IsAny<string>()).Result)
.Returns(false);

Lip lip = new(new(), fileSystem, logger.Object, userInteraction.Object);

Lip.InitArgs args = new()
Expand Down
2 changes: 1 addition & 1 deletion Lip/IUserInteraction.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Lip;
namespace Lip;

/// <summary>
/// Represents a user interaction interface.
Expand Down
4 changes: 2 additions & 2 deletions Lip/Lip.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using Microsoft.Extensions.Logging;
using System.IO.Abstractions;
using System.IO.Abstractions;
using Microsoft.Extensions.Logging;

namespace Lip;

Expand Down

0 comments on commit faf6992

Please sign in to comment.