mirror of
https://github.com/kairos-io/kcrypt-challenger.git
synced 2025-08-15 05:03:43 +00:00
Fix error interface conversion: interface {} is []uint8, not string
Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me>
This commit is contained in:
parent
3b89def5b4
commit
ffd5f18bcf
@ -154,7 +154,7 @@ kcrypt:
|
|||||||
)
|
)
|
||||||
|
|
||||||
secretOut, err := cmd.CombinedOutput()
|
secretOut, err := cmd.CombinedOutput()
|
||||||
Expect(err).ToNot(HaveOccurred(), secretOut)
|
Expect(err).ToNot(HaveOccurred(), string(secretOut))
|
||||||
Expect(string(secretOut)).To(MatchRegexp("tpm"))
|
Expect(string(secretOut)).To(MatchRegexp("tpm"))
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user