Skip to content

Commit

Permalink
small improvs and test fixing #2
Browse files Browse the repository at this point in the history
  • Loading branch information
joao4all committed Jul 29, 2024
1 parent 9a97a13 commit 35267fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class ParameterEditorTestFixture
private Mock<ISession> session;
private Iteration firstIteration;
private Iteration secondIteration;
private ICDPMessageBus messageBus;
private CDPMessageBus messageBus;

[SetUp]
public void Setup()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ public async Task VerifyApplyFilters()
this.viewModel.ElementSelector.SelectedElementBase = this.viewModel.ElementSelector.AvailableElements.First();
await TaskHelper.WaitWhileAsync(() => this.viewModel.IsLoading);

this.tableViewModel.Verify(x => x.ApplyFilters(this.iteration.DefaultOption, this.viewModel.ElementSelector.SelectedElementBase, null, true), Times.Once);
this.tableViewModel.Verify(x => x.ApplyFilters(this.iteration.DefaultOption, this.viewModel.ElementSelector.SelectedElementBase, null, true), Times.AtLeastOnce);

this.viewModel.ElementSelector.SelectedElementBase = null;
await TaskHelper.WaitWhileAsync(() => this.viewModel.IsLoading);
Expand Down

0 comments on commit 35267fa

Please sign in to comment.