Skip to content

Commit

Permalink
disable dispose during test
Browse files Browse the repository at this point in the history
  • Loading branch information
dnenov committed Dec 6, 2023
1 parent 208bae7 commit af79230
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1092,6 +1092,7 @@ public PublishPackageViewModel( DynamoViewModel dynamoViewModel ) : this()

private void ClearAllEntries()
{
if (DynamoModel.IsTestMode) return;
// this function clears all the entries of the publish package dialog
this.Name = string.Empty;
this.RepositoryUrl = string.Empty;
Expand Down

0 comments on commit af79230

Please sign in to comment.