Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CoAP.Test/CoapClientTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public void TestSynchronousCall()

// Observe the resource
_expected = CONTENT_2;
_notifications = 0;
CoapObserveRelation obs1 = client.Observe(response =>
{
Interlocked.Increment(ref _notifications);
Expand Down Expand Up @@ -142,6 +143,7 @@ public void TestAsynchronousCall()
Thread.Sleep(100);

// Observe the resource
_notifications = 0;
_expected = CONTENT_2;
CoapObserveRelation obs1 = client.ObserveAsync(response =>
{
Expand Down