Skip to content

Commit

Permalink
Fix build and test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
myieye committed Apr 15, 2024
1 parent 013884f commit bc21834
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions backend/Testing/Services/UtilsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ public class UtilsTests
{
[Theory]
[InlineData(nameof(SendReceiveServiceTests.ModifyProjectData), "modify-project-data")]
[InlineData(nameof(SendReceiveServiceTests.SendNewProject), "send-new-project")]
[InlineData($"{nameof(SendReceiveServiceTests.SendNewProject)} (res)", "send-new-project-res")]
[InlineData(nameof(SendReceiveServiceTests.SendNewProject_Medium), "send-new-project-medium")]
[InlineData($"{nameof(SendReceiveServiceTests.SendNewProject_Medium)} (res)", "send-new-project-medium-res")]
[InlineData("_DashAround__123theBlock", "dash-around-123the-block")]
public void VerifyToProjectCodeFriendlyString(string input, string expected)
{
Expand Down
10 changes: 5 additions & 5 deletions backend/Testing/SyncReverseProxy/SendReceiveServiceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,18 +190,18 @@ public async Task SendReceiveAfterProjectReset(HgProtocol protocol)
}

[Fact]
private async Task SendReceiveNewProject_Big()
public async Task SendNewProject_Big()
{
await SendReceiveNewProject(180, 10);
await SendNewProject(180, 10);
}

[Fact]
private async Task SendReceiveNewProject_Medium()
public async Task SendNewProject_Medium()
{
await SendReceiveNewProject(90, 5);
await SendNewProject(90, 5);
}

private async Task SendReceiveNewProject(int totalSizeMb, int fileCount)
private async Task SendNewProject(int totalSizeMb, int fileCount)
{
var projectConfig = _srFixture.InitLocalFlexProjectWithRepo();
await using var project = await RegisterProjectInLexBox(projectConfig, _adminApiTester);
Expand Down

0 comments on commit bc21834

Please sign in to comment.