Skip to content

Commit 0ad94dd

Browse files
committed
Fix tests for TPM 1.2
1 parent a3f530a commit 0ad94dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

attest/tpm12_linux.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,8 @@ func (t *trousersTPM) loadKey(opaqueBlob []byte) (*Key, error) {
112112
return nil, fmt.Errorf("not implemented")
113113
}
114114

115-
func (t *trousersTPM) deleteKey(opaqueBlob []byte) (*Key, error) {
116-
return nil, fmt.Errorf("not implemented")
115+
func (t *trousersTPM) deleteKey(opaqueBlob []byte) error {
116+
return fmt.Errorf("not implemented")
117117
}
118118

119119
func (t *trousersTPM) newAK(opts *AKConfig) (*AK, error) {

0 commit comments

Comments
 (0)