fix: remove test throw

This commit is contained in:
Nybkox
2025-04-03 22:58:50 +02:00
parent 9d85a58634
commit d68cf4e44d

View File

@@ -77,8 +77,6 @@ class Analyser extends DatabaseAnalyser {
async _runAnalysis() { async _runAnalysis() {
const structure = await this._getFastSnapshot(); const structure = await this._getFastSnapshot();
return structure; return structure;
throw new Error('Not implemented');
return this._getFastSnapshot();
} }
} }