Skip to content

Commit

Permalink
chore: fix DoubleTapped_Without_Tapped
Browse files Browse the repository at this point in the history
  • Loading branch information
ramezgerges committed Dec 7, 2024
1 parent b7d441e commit 9d1be14
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void DoubleTapped()
[TestMethod]
public void DoubleTapped_Without_Tapped()
{
var sut = new GestureRecognizer { GestureSettings = GestureSettings.DoubleTap };
var sut = new GestureRecognizer { GestureSettings = GestureSettings.Tap | GestureSettings.DoubleTap };
var taps = new List<TappedEventArgs>();
sut.Tapped += (snd, e) => taps.Add(e);

Expand Down

0 comments on commit 9d1be14

Please sign in to comment.