Skip to content

Commit

Permalink
refs #9135 fixing test for separate monitors load name
Browse files Browse the repository at this point in the history
as this is what have changed.
  • Loading branch information
abuts committed Apr 10, 2014
1 parent bbc7885 commit a0875f1
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -25,7 +25,7 @@ def test_Load_returns_correct_args_when_extra_output_props_are_added_at_execute_
self._do_name_check(data, 'data')

self.assertTrue(isinstance(monitors, MatrixWorkspace))
self._do_name_check(monitors, 'data_Monitors')
self._do_name_check(monitors, 'data_monitors')

def test_Load_returns_just_the_WorkspaceGroup_when_final_output_is_a_group(self):
data = Load('CSP78173.raw')
Expand All @@ -39,7 +39,7 @@ def test_Load_returns_only_the_WorkspaceGroups_when_final_output_is_a_group_and_
self.assertTrue(isinstance(outputs[0], WorkspaceGroup))
self._do_name_check(outputs[0], 'outputs')
self.assertTrue(isinstance(outputs[1], WorkspaceGroup))
self._do_name_check(outputs[1], 'outputs_Monitors')
self._do_name_check(outputs[1], 'outputs_monitors')

def test_Load_call_with_just_filename_executes_correctly(self):
try:
Expand Down

0 comments on commit a0875f1

Please sign in to comment.