Skip to content

Commit

Permalink
failing tests fix
Browse files Browse the repository at this point in the history
- the tests were failing because another test folder was starting with a preceding alphabet letter
  • Loading branch information
dnenov committed Nov 15, 2023
1 parent 40a0336 commit 3396d3d
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/DynamoCoreWpfTests/PublishPackageViewModelTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,8 @@ public void RemoveAllChildrenFilesUpdatesContentItem()
public void CanRemoveCustomDefinitionDependencyTypes()
{
// Arrange
string nodePath = Path.Combine(TestDirectory, "core", "docbrowser\\pkgs\\AllFileTypesPackageDocs");
string dyfPath = Path.Combine(TestDirectory, "core", "docbrowser\\pkgs\\AllFileTypesPackageDocs\\dyf\\3DView by BoundingBox.dyf");
string nodePath = Path.Combine(TestDirectory, "core", "docbrowser\\pkgs\\_AllFileTypesPackageDocs");
string dyfPath = Path.Combine(TestDirectory, "core", "docbrowser\\pkgs\\_AllFileTypesPackageDocs\\dyf\\3DView by BoundingBox.dyf");
var allFiles = Directory.GetFiles(nodePath, "*", SearchOption.AllDirectories).ToList();
var vm = new PublishPackageViewModel(this.ViewModel);

Expand Down Expand Up @@ -433,7 +433,7 @@ public void CanRemoveCustomDefinitionDependencyTypes()
public void CanRemoveAllDependencyTypes()
{
// Arrange
string nodePath = Path.Combine(TestDirectory, "core", "docbrowser\\pkgs\\AllFileTypesPackageDocs");
string nodePath = Path.Combine(TestDirectory, "core", "docbrowser\\pkgs\\_AllFileTypesPackageDocs");
var allFiles = Directory.GetFiles(nodePath, "*", SearchOption.AllDirectories).ToList();
var vm = new PublishPackageViewModel(this.ViewModel);

Expand Down

0 comments on commit 3396d3d

Please sign in to comment.