diff options
| author | JP Appel <jeanpierre.appel01@gmail.com> | 2025-11-21 20:50:42 -0500 |
|---|---|---|
| committer | JP Appel <jeanpierre.appel01@gmail.com> | 2025-11-21 20:50:42 -0500 |
| commit | 1aad60b49a32b6bced95a251f266799c031ca83e (patch) | |
| tree | 4b156c7f6df11a164a31a5615d30f9cd6f07c44f /pkg/data/put_test.go | |
| parent | 7383ea149c9444c297e21f21294fd41e67f9c9ff (diff) | |
Update documentation, comments, and tidy codebase
Diffstat (limited to 'pkg/data/put_test.go')
| -rw-r--r-- | pkg/data/put_test.go | 2 |
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 } |
