Skip to content

Commit

Permalink
Ignore tests for PresenceResponse for now
Browse files Browse the repository at this point in the history
  • Loading branch information
ShortDevelopment committed Nov 1, 2023
1 parent df7f709 commit da5131b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
using ShortDev.Microsoft.ConnectedDevices.Messages.Connection;
using ShortDev.Microsoft.ConnectedDevices.Platforms;
using ShortDev.Networking;
using System;
using System.IO;
using System.Security.Cryptography;
using System.Xml.Linq;

namespace ShortDev.Microsoft.ConnectedDevices.Messages.Discovery;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ public static IEnumerable<object[]> GenerateMsgTypes()
{
if (
IsOk(typeof(ICdpHeader<>), type) ||
IsOk(typeof(ICdpPayload<>), type)
IsOk(typeof(ICdpPayload<>), type) &&
type.Name != "PresenceResponse"
)
yield return new object[] { type };
}
Expand Down

0 comments on commit da5131b

Please sign in to comment.