Skip to content

Commit

Permalink
changed number of tf coils in test until #747 is solved
Browse files Browse the repository at this point in the history
  • Loading branch information
remdelaportemathurin committed Feb 27, 2021
1 parent 99efe9e commit 101fbf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_parametric_reactors/test_eu_demo_2015_reactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def test_make_demo_2015_reactor(self):
'vacvessel.stp',
]
os.system("rm *.stp")
my_reactor = paramak.EuDemoFrom2015PaperDiagram()
my_reactor = paramak.EuDemoFrom2015PaperDiagram(number_of_tf_coils=1)
my_reactor.export_stp()
for output_filename in output_filenames:
assert Path(output_filename).exists() is True
Expand All @@ -45,7 +45,7 @@ def test_make_parametric_demo_2015_rector(self):
'vacvessel.stp',
]
os.system("rm *.stp")
my_reactor = paramak.EuDemoFrom2015PaperDiagram(rotation_angle=90)
my_reactor = paramak.EuDemoFrom2015PaperDiagram(number_of_tf_coils=1, rotation_angle=90)
my_reactor.export_stp()
for output_filename in output_filenames:
assert Path(output_filename).exists() is True
Expand Down

0 comments on commit 101fbf3

Please sign in to comment.