We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29983eb commit 553ae59Copy full SHA for 553ae59
cli/vscodessh_test.go
@@ -56,7 +56,7 @@ func TestVSCodeSSH(t *testing.T) {
56
go func() {
57
//nolint // The above seems reasonable for a one-off test.
58
err := cmd.ExecuteContext(context.WithValue(ctx, "fs", fs))
59
- assert.NoError(t, err)
+ assert.NotErrorIs(t, err, context.Canceled)
60
close(done)
61
}()
62
require.Eventually(t, func() bool {
0 commit comments