summaryrefslogtreecommitdiffstats
path: root/src/test/analyserwaveformtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/analyserwaveformtest.cpp')
-rw-r--r--src/test/analyserwaveformtest.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/test/analyserwaveformtest.cpp b/src/test/analyserwaveformtest.cpp
index ad619b842f..8e40121dbb 100644
--- a/src/test/analyserwaveformtest.cpp
+++ b/src/test/analyserwaveformtest.cpp
@@ -18,7 +18,8 @@ namespace {
class AnalyzerWaveformTest: public MixxxTest {
protected:
AnalyzerWaveformTest()
- : aw(config()),
+ : analysisDao(config()),
+ aw(&analysisDao),
bigbuf(nullptr),
canaryBigBuf(nullptr) {
}
@@ -49,6 +50,7 @@ class AnalyzerWaveformTest: public MixxxTest {
}
protected:
+ AnalysisDao analysisDao;
AnalyzerWaveform aw;
TrackPointer tio;
CSAMPLE* bigbuf;