-
Notifications
You must be signed in to change notification settings - Fork 638
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exclude new dyn from serialization tests
- Loading branch information
1 parent
f6fddc7
commit bc7e358
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -648,7 +648,9 @@ public object[] FindWorkspaces() | |
{ | ||
var di = new DirectoryInfo(TestDirectory); | ||
var fis = di.GetFiles("*.dyn", SearchOption.AllDirectories); | ||
return fis.Select(fi => fi.FullName).ToArray(); | ||
var dyn = fis.Select(fi => fi.FullName).ToList(); | ||
dyn.Remove("CustomNodeContainedInMultiplePackages.dyn"); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
scottmitchell
Author
Collaborator
|
||
return dyn.ToArray(); | ||
} | ||
|
||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
uhh, this seems like kind of a hack - why do we want to ignore these files from the serialization tests?