mirror of
https://github.com/kopia/kopia.git
synced 2026-01-21 12:57:55 -05:00
* 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
12 lines
189 B
Go
12 lines
189 B
Go
package notifydata_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/kopia/kopia/notification/notifydata"
|
|
)
|
|
|
|
func TestEmptyEventInfo(t *testing.T) {
|
|
testRoundTrip(t, ¬ifydata.EmptyEventData{})
|
|
}
|