Get rid of tallies_present argument for test harness classes

This commit is contained in:
Paul Romano 2017-04-07 10:25:24 -05:00
parent f4d3ee7de5
commit c3aa903146
75 changed files with 185 additions and 238 deletions

View file

@ -15,7 +15,7 @@ import openmc
class PlotTestHarness(TestHarness):
"""Specialized TestHarness for running OpenMC plotting tests."""
def __init__(self, plot_names):
super(PlotTestHarness, self).__init__(None, False)
super(PlotTestHarness, self).__init__(None)
self._plot_names = plot_names
def _run_openmc(self):