Skip to content

Commit

Permalink
Fix Build
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-dmxc committed Jan 5, 2024
1 parent 7b2fcc7 commit 54506a0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ArtNetTests/NetworkTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public void TestNodeInstance()
for (int i = 0; i < 60; i++)
Thread.Sleep(1000);
artNet.RemoveInstance(instance);
instance.Dispose();
((IDisposable)instance).Dispose();
}

[Test]
Expand All @@ -45,7 +45,7 @@ public void TestControllerInstance()
for (int i = 0; i < 60; i++)
Thread.Sleep(1000);
artNet.RemoveInstance(instance);
instance.Dispose();
((IDisposable)instance).Dispose();
}


Expand Down Expand Up @@ -82,7 +82,7 @@ public void TestDMXTrafficInstance()
for (int i = 0; i < 20; i++)
Thread.Sleep(1000);
artNet.RemoveInstance(instance);
instance.Dispose();
((IDisposable)instance).Dispose();
}

[Test]
Expand Down Expand Up @@ -151,7 +151,7 @@ void Instance_RDMMessageReceived(object? sender, RDMMessage e)

Thread.Sleep(10000);
artNet.RemoveInstance(instance);
instance.Dispose();
((IDisposable)instance).Dispose();
}

[Test]
Expand Down Expand Up @@ -180,7 +180,7 @@ public void TestRDMDeviceInstance()

Thread.Sleep(60000);
artNet.RemoveInstance(instance);
instance.Dispose();
((IDisposable)instance).Dispose();
}


Expand All @@ -200,7 +200,7 @@ public void TestSendTimeCode()
Thread.Sleep(100);
}
artNet.RemoveInstance(instance);
instance.Dispose();
((IDisposable)instance).Dispose();
}

[Test]
Expand All @@ -218,7 +218,7 @@ public void TestSendTimeSync()
Thread.Sleep(1000);
}
artNet.RemoveInstance(instance);
instance.Dispose();
((IDisposable)instance).Dispose();
}

[Test]
Expand Down Expand Up @@ -246,7 +246,7 @@ public void TestSendAddress()
Thread.Sleep(1000);

artNet.RemoveInstance(instance);
instance.Dispose();
((IDisposable)instance).Dispose();
}
}
}

0 comments on commit 54506a0

Please sign in to comment.