Skip to content

Commit

Permalink
Better name for cloning FW project from Lexbox
Browse files Browse the repository at this point in the history
  • Loading branch information
rmunn committed Aug 22, 2024
1 parent 52017e9 commit 1eea903
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/LfMerge.Core.Tests/E2E/E2ETestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public string CloneRepoFromLexbox(string code, string? newCode = null, TimeSpan?
return dest;
}

public FwProject CloneFromLexbox(string code, string? newCode = null, TimeSpan? waitTime = null)
public FwProject CloneFwProjectFromLexbox(string code, string? newCode = null, TimeSpan? waitTime = null)
{
var dest = CloneRepoFromLexbox(code, newCode, waitTime);
var dirInfo = new DirectoryInfo(dest);
Expand Down
2 changes: 1 addition & 1 deletion src/LfMerge.Core.Tests/E2E/TryOutE2ETests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public async Task E2E_LFDataChangedLDDataChanged_LFWins()

var lfProject = await CreateLfProjectFromSena3();
var fwProjectCode = Regex.Replace(lfProject.ProjectCode, "^sr-", "fw-");
var fwProject = CloneFromLexbox(lfProject.ProjectCode, fwProjectCode);
var fwProject = CloneFwProjectFromLexbox(lfProject.ProjectCode, fwProjectCode);

// Modify FW data first, then push to Lexbox
Guid entryId = LcmTestHelper.GetFirstEntry(fwProject).Guid;
Expand Down

0 comments on commit 1eea903

Please sign in to comment.