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 c7fbd95 commit 1045089Copy full SHA for 1045089
.github/workflows/keystore.yml
@@ -92,7 +92,7 @@ jobs:
92
needs: [changes, run-tests, build-race-tests]
93
if: always()
94
steps:
95
- - name: Fail if any job failed
+ - name: Fail if any job ran and failed
96
if: needs.changes.outputs.keystore-src == 'true' &&
97
(needs.run-tests.outcome != 'success' ||
98
needs.build-race-tests.outcome != 'success')
keystore/admin_test.go
@@ -282,8 +282,7 @@ func TestKeystore_ExportImport(t *testing.T) {
282
{KeyName: "key2", Enc: keystore.EncryptionParams{}},
283
},
284
})
285
- require.NoError(t, err)
286
- //require.ErrorIs(t, err, keystore.ErrKeyNotFound)
+ require.ErrorIs(t, err, keystore.ErrKeyNotFound)
287
288
}
289
0 commit comments