Skip to content

Commit 9a2e93f

Browse files
committed
A Copilot generated commit message - Update DragServiceTests assertions for expected behavior
Modified assertions in `DragServiceTests` to check that `ShouldDisplay` is `false` and `MouseEventArgs` is `null`, reflecting a change in the expected behavior of the `DragStateWrap` after the test setup.
1 parent 4a90377 commit 9a2e93f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Source/Tests/Common/Basis/Drags/Models/DragServiceTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ public void WithAction()
4242
MouseEventArgs = new(),
4343
});
4444

45-
Assert.True(dragService.DragStateWrap.Value.ShouldDisplay);
46-
Assert.NotNull(dragService.DragStateWrap.Value.MouseEventArgs);
45+
Assert.False(dragService.DragStateWrap.Value.ShouldDisplay);
46+
Assert.Null(dragService.DragStateWrap.Value.MouseEventArgs);
4747
}
4848

4949
private void InitializeDragServiceTests(

0 commit comments

Comments
 (0)