Skip to content

Commit 8ca6fc1

Browse files
authored
Updating namespaces in Azure.Functions.Cli.TestFramework (#4385)
1 parent 313e44f commit 8ca6fc1

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

test/Cli/TestFramework/Assertions/CommandResultAssertions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT License. See LICENSE in the project root for license information.
33

44
// Based off of: https://github.com/dotnet/sdk/blob/e793aa4709d28cd783712df40413448250e26fea/test/Microsoft.NET.TestFramework/Assertions/CommandResultAssertions.cs
5-
using Azure.Functions.Cli.Abstractions.Command;
5+
using Azure.Functions.Cli.Abstractions;
66
using FluentAssertions;
77
using FluentAssertions.Execution;
88

test/Cli/TestFramework/Assertions/CommandResultExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Licensed under the MIT License. See LICENSE in the project root for license information.
33

44
// Copied from: https://github.com/dotnet/sdk/blob/e793aa4709d28cd783712df40413448250e26fea/test/Microsoft.NET.TestFramework/Assertions/CommandResultExtensions.cs
5-
using Azure.Functions.Cli.Abstractions.Command;
5+
using Azure.Functions.Cli.Abstractions;
66

77
namespace Azure.Functions.Cli.TestFramework.Assertions
88
{

test/Cli/TestFramework/CommandInfo.cs

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

44
// Based off of: https://github.com/dotnet/sdk/blob/e793aa4709d28cd783712df40413448250e26fea/test/Microsoft.NET.TestFramework/Commands/SdkCommandSpec.cs
55
using System.Diagnostics;
6-
using Azure.Functions.Cli.Abstractions.Command;
6+
using Azure.Functions.Cli.Abstractions;
77

88
namespace Azure.Functions.Cli.TestFramework
99
{

test/Cli/TestFramework/Commands/FuncCommand.cs

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

44
// Based off of: https://github.com/dotnet/sdk/blob/e793aa4709d28cd783712df40413448250e26fea/test/Microsoft.NET.TestFramework/Commands/TestCommand.cs
55
using System.Diagnostics;
6-
using Azure.Functions.Cli.Abstractions.Command;
6+
using Azure.Functions.Cli.Abstractions;
77
using Xunit.Abstractions;
88

99
namespace Azure.Functions.Cli.TestFramework.Commands

test/Cli/TestFramework/Helpers/FunctionAppSetupHelper.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the MIT License. See LICENSE in the project root for license information.
33

4+
using Azure.Functions.Cli.Abstractions;
45
using Azure.Functions.Cli.TestFramework.Commands;
56
using Xunit.Abstractions;
67

@@ -31,7 +32,7 @@ await RetryHelper.RetryAsync(
3132
// Apply any additional configuration
3233
configureCommand?.Invoke(command);
3334

34-
Abstractions.Command.CommandResult result = command
35+
CommandResult result = command
3536
.WithWorkingDirectory(workingDirectory)
3637
.Execute(args);
3738

0 commit comments

Comments
 (0)