Skip to content

Commit

Permalink
Added debug output for test
Browse files Browse the repository at this point in the history
  • Loading branch information
SilkeSchomann committed Dec 6, 2024
1 parent 8563575 commit ee98faa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/workspacemanager_presenter_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,7 @@ def test_ensure_that_the_ads_observer_calls_delete_handle(self):
)

CreateSampleWorkspace(OutputWorkspace="ws", StoreInADS=True)
print(AnalysisDataService.getObjectNames())
AnalysisDataService.remove("ws")

presenter.delete_handle.assert_called_once_with("ws")
Expand All @@ -471,6 +472,7 @@ def test_ensure_that_the_ads_observer_calls_rename_handle(self):
)

CreateSampleWorkspace(OutputWorkspace="ws", StoreInADS=True)
print(AnalysisDataService.getObjectNames())
RenameWorkspace(InputWorkspace="ws", OutputWorkspace="ws1")

presenter.rename_handle.assert_called_once_with("ws", "ws1")
Expand Down

0 comments on commit ee98faa

Please sign in to comment.