DROPME add failing test to check ci/cd
Some checks failed
Validate the build / validate-build (push) Failing after 1m0s

This commit is contained in:
2025-05-20 22:38:43 +02:00
parent 5f450e206f
commit 32bc802fa8

View File

@ -12,6 +12,8 @@ func TestDeHex(t *testing.T) {
assert.NotNil(t, b)
assert.Len(t, b, 0)
assert.NotNil(t, nil, "testing ci/cd test failure")
b = util.DeHex("deadbeef")
assert.NotNil(t, b)
assert.Equal(t, []byte("\xde\xad\xbe\xef"), b)