Skip to content

Commit

Permalink
Revert changes to ACT wait/pump
Browse files Browse the repository at this point in the history
  • Loading branch information
atruskie committed Apr 5, 2020
1 parent 791c44e commit ecfd17c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Acoustics.Test/AnalysisBase/AnalysisCoordinatorTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -882,11 +882,11 @@ private void TestAnalysisCoordinatorPaths(SaveBehavior wav, bool unique, Directo

// complete
// TODO: remove this rubbish and stick in a IoC file system for testing!
dummyAnalyzer.Pump();
dummyAnalyzer.Pump(false);
do
{
task.Wait(1.0.Seconds());
dummyAnalyzer.Pump();
Thread.Sleep(0.5.Seconds());
dummyAnalyzer.Pump(false);
}
while (!task.IsCompleted);
task.Wait(1.0.Seconds());
Expand Down

0 comments on commit ecfd17c

Please sign in to comment.