File tree Expand file tree Collapse file tree
spec/octocatalog-diff/tests/util Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -75,15 +75,15 @@ def two(_arg, _logger = nil)
7575
7676 one_result = result [ 0 ]
7777 expect ( one_result ) . to be_a_kind_of ( OctocatalogDiff ::Util ::Parallel ::Result )
78- expect ( one_result . status ) . to eq ( true ) , result . inspect
79- expect ( one_result . exception ) . to eq ( nil ) , result . inspect
80- expect ( one_result . output ) . to eq ( 'one abc' ) , result . inspect
78+ expect ( one_result . status ) . to eq ( true )
79+ expect ( one_result . exception ) . to eq ( nil )
80+ expect ( one_result . output ) . to eq ( 'one abc' )
8181
8282 two_result = result [ 1 ]
8383 expect ( two_result ) . to be_a_kind_of ( OctocatalogDiff ::Util ::Parallel ::Result )
84- expect ( two_result . status ) . to eq ( false ) , result . inspect
85- expect ( two_result . exception ) . to be_a_kind_of ( RuntimeError ) , result . inspect
86- expect ( two_result . exception . message ) . to eq ( 'Two failed' ) , result . inspect
84+ expect ( two_result . status ) . to eq ( false )
85+ expect ( two_result . exception ) . to be_a_kind_of ( RuntimeError )
86+ expect ( two_result . exception . message ) . to eq ( 'Two failed' )
8787 end
8888
8989 it 'should kill running tasks when one task fails' do
You can’t perform that action at this time.
0 commit comments