Performant event serialization. Update README.

This commit is contained in:
Jay
2026-04-20 22:59:28 -04:00
parent b545f9370f
commit 62aeef4eaf
5 changed files with 72 additions and 43 deletions
+1 -2
View File
@@ -196,8 +196,7 @@ var idTestCases = []IDTestCase{
func TestEventGetId(t *testing.T) {
for _, tc := range idTestCases {
t.Run(tc.name, func(t *testing.T) {
actual, err := GetID(tc.event)
assert.NoError(t, err)
actual := GetID(tc.event)
assert.Equal(t, tc.expected, actual)
})
}