Skip to content

Commit

Permalink
Remove failure category for the test.
Browse files Browse the repository at this point in the history
  • Loading branch information
reddyashish committed May 22, 2024
1 parent c90f0f0 commit 6273eb7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/DynamoUtilities/PIIDetector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ internal static string RemovePIIData(string data)
result = Regex.Replace(result, datePattern, "");
result = Regex.Replace(result, ipPattern, "");
result = Regex.Replace(result, creditCardPattern, "");
result = Regex.Replace(result, websitePattern, "");

return result;
}
Expand Down
1 change: 0 additions & 1 deletion test/DynamoCoreWpfTests/WorkspaceSaving.cs
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,6 @@ public void CanSaveAsNewWorkspaceWithNewGuids()
}

[Test]
[Category("Failure")]
public void RemovePIIDataFromWorkspace()
{
string graphWithPIIDataPath = Path.Combine(TestDirectory, (@"UI\GraphWithPIIData.dyn"));
Expand Down

0 comments on commit 6273eb7

Please sign in to comment.