Skip to content

Commit

Permalink
Format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nkylstad committed Dec 7, 2023
1 parent 2ae8edc commit 27e7823
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#nullable enable
using System;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public async Task UpdateProcessTaskName_ShouldReturnUpdatedProcess(string org, s

[Theory]
[InlineData("ttd", "app-with-process", "testUser", "Does_not_exist", "NewTaskName")]
public async Task InvalidTaskId_ShouldReturnBadRequest(string org, string app, string developer, string taskId, string taskName)
public async Task InvalidTaskId_ShouldReturnBadRequest(string org, string app, string developer, string taskId, string taskName)
{
string targetRepository = TestDataHelper.GenerateTestRepoName();
await CopyRepositoryForTest(org, app, developer, targetRepository);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public void GetProcessDefinitionTemplates_GivenVersion_ReturnsListOfTemplates(st

[Theory]
[InlineData("ttd", "app-with-process", "testUser", "Task_1", "NewTaskName")]
public async void UpdateProcessTaskNameAsync_GivenTaskIdAndTaskName_UpdatesTaskName(string org, string repo, string developer, string taskId, string newTaskName)
public async void UpdateProcessTaskNameAsync_GivenTaskIdAndTaskName_UpdatesTaskName(string org, string repo, string developer, string taskId, string newTaskName)
{
// Arrange
string targetRepository = TestDataHelper.GenerateTestRepoName();
Expand Down

0 comments on commit 27e7823

Please sign in to comment.