Skip to content

Commit ec1fdde

Browse files
committed
quickfix remove print
1 parent 2222d3d commit ec1fdde

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/test_server_errors.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ def test_server_exception_from_workflow():
4444

4545
with pytest.raises(errors.DPFServerException) as exception_note:
4646
wf.get_output("out", output_type=dpf.FieldsContainer)
47-
48-
print(type(exception_note))
47+
4948
exception = exception_note.value
5049
assert hasattr(exception, '__notes__'), "The exception does not contain any note"
5150
assert exception.__notes__
52-

0 commit comments

Comments
 (0)