From 32bc802fa85410f02e87f4850839fd39c0f1eae5 Mon Sep 17 00:00:00 2001 From: omicron Date: Tue, 20 May 2025 22:38:43 +0200 Subject: [PATCH] DROPME add failing test to check ci/cd --- util/util_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/util_test.go b/util/util_test.go index 2adf416..edbddc1 100644 --- a/util/util_test.go +++ b/util/util_test.go @@ -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)