| def test_nktr_ranks_ahead_of_hlx():
|
| base = Path("reports/backtest")
|
| nktr_row = _load_row(base / "NKTR-2025-12-18.json")
|
| hlx_row = _load_row(base / "HLX-2025-12-18.json")
|
| nktr_score = _effective_score(nktr_row)
|
| hlx_score = _effective_score(hlx_row)
|
| > assert nktr_score > hlx_score, f"Expected NKTR to outrank HLX (scores {nktr_score} vs {hlx_score})"
|
| E AssertionError: Expected NKTR to outrank HLX (scores 146.99796601226302 vs 162.60880021725978)
|
| E assert 146.99796601226302 > 162.60880021725978
|
|
|
| tests/test_rank_order_nktr_vs_hlx.py:227: AssertionError
|