Test: Use PascalCase names for all Go subtests in /internal

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2025-10-02 14:50:02 +02:00
parent c68493da8a
commit 94b6631b3d
239 changed files with 1909 additions and 1909 deletions

View File

@@ -8,7 +8,7 @@ import (
)
func TestNewResponse(t *testing.T) {
t.Run("404", func(t *testing.T) {
t.Run("Num404", func(t *testing.T) {
r := NewResponse(404, errors.New("not found"), "details")
assert.Equal(t, 404, r.Code)
assert.Equal(t, "details", r.Details)