Skip to content

Commit 1045089

Browse files
committed
Minor.
1 parent c7fbd95 commit 1045089

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/keystore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
needs: [changes, run-tests, build-race-tests]
9393
if: always()
9494
steps:
95-
- name: Fail if any job failed
95+
- name: Fail if any job ran and failed
9696
if: needs.changes.outputs.keystore-src == 'true' &&
9797
(needs.run-tests.outcome != 'success' ||
9898
needs.build-race-tests.outcome != 'success')

keystore/admin_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,7 @@ func TestKeystore_ExportImport(t *testing.T) {
282282
{KeyName: "key2", Enc: keystore.EncryptionParams{}},
283283
},
284284
})
285-
require.NoError(t, err)
286-
//require.ErrorIs(t, err, keystore.ErrKeyNotFound)
285+
require.ErrorIs(t, err, keystore.ErrKeyNotFound)
287286
})
288287
}
289288

0 commit comments

Comments
 (0)