fix(tests): add missing TradingState import to DQN trainer tests

The test module used `super::*` but TradingState lives in
crate::dqn, not in the trainer module — broke `cargo test --lib`.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jgrusewski
2026-03-16 09:25:52 +01:00
parent 216db0301d
commit c84c51434e

View File

@@ -1,4 +1,5 @@
use super::*;
use crate::dqn::TradingState;
use crate::hyperopt::ParameterSpace;
use std::sync::OnceLock;