Files
kopia/notification/notifydata/empty_test.go
Jarek Kowalski fec575bd90 fix(server): fixed server-based notifications (#4598)
* fix(server): fixed server-based notifications

Used TypedEventArgs instead of `any` to ensure all notification data
carries type information, allowing the server to property deserialize it.

* fix
2025-05-24 08:15:45 -07:00

12 lines
189 B
Go

package notifydata_test
import (
"testing"
"github.com/kopia/kopia/notification/notifydata"
)
func TestEmptyEventInfo(t *testing.T) {
testRoundTrip(t, &notifydata.EmptyEventData{})
}