File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 6969 run : |
7070 scripts/vader-run-tests.sh --test units --cicd > /dev/null
7171
72- - name : Test mocks
73- run : |
74- scripts/vader-run-tests.sh --test mocks --cicd > /dev/null
72+ # - name: Test mocks
73+ # run: |
74+ # scripts/vader-run-tests.sh --test mocks --cicd > /dev/null
7575
7676
7777# #
Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ Execute (proompter#SendPromptToChat -- Uses default channel callback when stream
102102
103103 sleep 100m
104104 finally
105- if type(state.channel) != v:t_none && get( ch_info(state.channel), ' status', v:null) != 'closed'
105+ if ch_info(state.channel). status != 'closed'
106106 call ch_close(state.channel)
107107 endif
108108 endtry
@@ -186,7 +186,7 @@ Execute (proompter#SendPromptToChat -- Uses default channel callback when non-st
186186
187187 sleep 100m
188188 finally
189- if type(state.channel) != v:t_none && get( ch_info(state.channel), ' status', v:null) != 'closed'
189+ if ch_info(state.channel). status != 'closed'
190190 call ch_close(state.channel)
191191 endif
192192 endtry
@@ -295,7 +295,7 @@ Execute (proompter#SendPromptToChat -- Appends to buffer via example channel cal
295295
296296 sleep 100m
297297 finally
298- if type(state.channel) != v:t_none && get( ch_info(state.channel), ' status', v:null) != 'closed'
298+ if ch_info(state.channel). status != 'closed'
299299 call ch_close(state.channel)
300300 endif
301301 endtry
You can’t perform that action at this time.
0 commit comments