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

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2025-10-02 15:03:47 +02:00
parent 94b6631b3d
commit b00dd133db
73 changed files with 736 additions and 736 deletions

View File

@@ -86,7 +86,7 @@ func BenchmarkGenerateUID(b *testing.B) {
}
func TestGenerateUID_Time(t *testing.T) {
t.Run("2017", func(t *testing.T) {
t.Run("Num2017", func(t *testing.T) {
date := time.Date(2017, 1, 1, 0, 0, 0, 0, time.UTC)
t.Logf("Unix Timestamp: %d", date.Unix())
t.Logf("Date Encoded: %s", strconv.FormatInt(date.UTC().Unix(), 36))