Skip to content

Commit

Permalink
Update packet loss tracker unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
philippitts committed Aug 9, 2023
1 parent 0a2a785 commit 0d90876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenBCI_GUI_unittests/PacketLossTrackerGanglion_UnitTests.pde
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ import org.junit.Before;

public static class PacketLossTrackerGanglionBLE_UnitTests{

PacketLossTrackerGanglionBLE packetLossTracker;
PacketLossTrackerGanglionBLE2 packetLossTracker;
FakeTimeProvider fakeTimeProvider;

@Before
public void setUp() {
int sampleIndexChannel = 0;
int timestampChannel = 1;
fakeTimeProvider = currentApplet.new FakeTimeProvider();
packetLossTracker = currentApplet.new PacketLossTrackerGanglionBLE(
packetLossTracker = currentApplet.new PacketLossTrackerGanglionBLE2(
sampleIndexChannel, timestampChannel, fakeTimeProvider);
packetLossTracker.silent = true;
}
Expand Down

0 comments on commit 0d90876

Please sign in to comment.