Skip to content

Commit

Permalink
📝 (MigrationTools.xml): update Git metadata in documentation
Browse files Browse the repository at this point in the history
✅ (TfsNodeStructureTests.cs): fix test setup for AreaMaps dictionary initialization

The Git metadata in the MigrationTools.xml file is updated to reflect the latest commit information, ensuring the documentation is accurate and up-to-date. The test setup in TfsNodeStructureTests.cs is corrected by properly initializing the AreaMaps dictionary, which ensures the test runs correctly and avoids potential null reference issues.
  • Loading branch information
MrHinsh committed Aug 18, 2024
1 parent 5ae437a commit d948a56
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions docs/Reference/Generated/MigrationTools.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public void GetTfsNodeStructureTool_WithDifferentAreaPath()
{
var options = new TfsNodeStructureToolOptions();
options.Enabled = true;
options.AreaMaps[@"^SourceProject\\PUL"] = "TargetProject\\test\\PUL";
options.AreaMaps = new Dictionary<string, string>() { { @"^SourceProject\\PUL", "TargetProject\\test\\PUL" } } ;
var nodeStructure = GetTfsNodeStructureTool(options);

nodeStructure.ApplySettings(new TfsNodeStructureToolSettings
Expand Down

0 comments on commit d948a56

Please sign in to comment.