Skip to content

Commit

Permalink
✅ fix unit test missing variable
Browse files Browse the repository at this point in the history
  • Loading branch information
apearce committed Nov 27, 2024
1 parent 31f72d7 commit 4e15e5c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/unit/test_sctfcoil.py
Original file line number Diff line number Diff line change
Expand Up @@ -14059,8 +14059,9 @@ def test_vv_stress_on_quench_integration(sctfcoil, monkeypatch):
monkeypatch.setattr(sctfcoil_module, "a_tf_steel", 0.55) # Section 3

# Sum from Section 3
monkeypatch.setattr(sctfcoil_module, "a_case_front", 0.47)
monkeypatch.setattr(sctfcoil_module, "a_case_nose", 0.47)
monkeypatch.setattr(sctfcoil_module, "a_case_front", 0.42)
monkeypatch.setattr(sctfcoil_module, "a_case_nose", 0.42)
monkeypatch.setattr(sctfcoil_module, "t_lat_case_av", 0.05)

monkeypatch.setattr(build_variables, "vgap_xpoint_divertor", 0.05) # Baseline 2018
monkeypatch.setattr(build_variables, "shldtth", 0.3) # Baseline 2018
Expand Down

0 comments on commit 4e15e5c

Please sign in to comment.