Skip to content

Commit

Permalink
Here we go again
Browse files Browse the repository at this point in the history
  • Loading branch information
CPKreu committed Dec 24, 2020
1 parent 803524f commit 54e054b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PixiEditorTests/ViewModelsTests/ViewModelMainTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void TestThatSelectToolCommandSelectsNewTool()

Assert.Equal(typeof(MoveTool), viewModel.BitmapManager.SelectedTool.GetType());

viewModel.ToolsSubViewModel.SelectToolCommand.Execute(typeof(LineTool));
viewModel.ToolsSubViewModel.SelectToolCommand.Execute(new LineTool());

Assert.Equal(typeof(LineTool), viewModel.BitmapManager.SelectedTool.GetType());
}
Expand Down

0 comments on commit 54e054b

Please sign in to comment.