aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/data/put_test.go
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2025-11-21 20:50:42 -0500
committerJP Appel <jeanpierre.appel01@gmail.com>2025-11-21 20:50:42 -0500
commit1aad60b49a32b6bced95a251f266799c031ca83e (patch)
tree4b156c7f6df11a164a31a5615d30f9cd6f07c44f /pkg/data/put_test.go
parent7383ea149c9444c297e21f21294fd41e67f9c9ff (diff)
Update documentation, comments, and tidy codebase
Diffstat (limited to 'pkg/data/put_test.go')
-rw-r--r--pkg/data/put_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/data/put_test.go b/pkg/data/put_test.go
index a450196..e4a3c57 100644
--- a/pkg/data/put_test.go
+++ b/pkg/data/put_test.go
@@ -45,7 +45,7 @@ func TestPut_Insert(t *testing.T) {
p := data.NewPut(db, tt.doc)
gotErr := p.Insert(t.Context())
if !errors.Is(gotErr, tt.wantErr) {
- t.Fatalf("Unexpected error on Insert():, want %v got %v", tt.wantErr, gotErr)
+ t.Fatalf("Unexpected error on Insert(): want %v got %v", tt.wantErr, gotErr)
} else if gotErr != nil {
return
}