File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
spec/octocatalog-diff/tests/util Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -75,15 +75,15 @@ def two(_arg, _logger = nil)
75
75
76
76
one_result = result [ 0 ]
77
77
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' )
81
81
82
82
two_result = result [ 1 ]
83
83
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' )
87
87
end
88
88
89
89
it 'should kill running tasks when one task fails' do
You can’t perform that action at this time.
0 commit comments