Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezgerges committed Nov 15, 2024
1 parent 4d4b25f commit 3283780
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1760,7 +1760,7 @@ await UITestHelper.Load(new StackPanel
await TestServices.WindowHelper.WaitForIdle();

Assert.AreEqual(1, dragEnterCount);
Assert.AreEqual(1, dragOverCount);
Assert.AreEqual(2, dragOverCount);
Assert.AreEqual(0, dropCount);

mouse.Release();
Expand All @@ -1770,7 +1770,7 @@ await UITestHelper.Load(new StackPanel
}

Assert.AreEqual(1, dragEnterCount);
Assert.AreEqual(2, dragOverCount);
Assert.AreEqual(3, dragOverCount);
Assert.AreEqual(waitAfterRelease ? 1 : 0, dropCount);
}

Expand Down

0 comments on commit 3283780

Please sign in to comment.