From 7440fc2610be1a11ade7925de85618fa20b87d08 Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Wed, 25 Sep 2024 04:55:40 +0000 Subject: [PATCH] add document state transformer interface --- internal/resource/pki_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/resource/pki_test.go b/internal/resource/pki_test.go index 8bd77a0..de1e3da 100644 --- a/internal/resource/pki_test.go +++ b/internal/resource/pki_test.go @@ -48,7 +48,7 @@ func (s StringContentReadWriter) ContentReaderStream() (*transport.Reader, error return r.(*transport.Reader), e } -func (s StringContentReadWriter) Apply() error { return nil } +func (s StringContentReadWriter) Apply(string) error { return nil } func (s StringContentReadWriter) Clone() data.Declaration { return nil } func (s StringContentReadWriter) Load(docData []byte, f codec.Format) (err error) { return } func (s StringContentReadWriter) LoadReader(r io.ReadCloser, f codec.Format) (err error) { return }